mirror of
https://github.com/eclipse/upm.git
synced 2025-07-03 02:11:15 +03:00
doxygen: add groups for all modules
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
@ -29,6 +29,10 @@
|
||||
|
||||
namespace upm {
|
||||
|
||||
/**
|
||||
* @brief library for basic grove sensors
|
||||
* @defgroup grove libupm-grove
|
||||
*/
|
||||
class Grove {
|
||||
public:
|
||||
virtual ~Grove() {}
|
||||
@ -45,6 +49,7 @@ class Grove {
|
||||
*
|
||||
* Very basic UPM module for grove LED, or any LED for that matter
|
||||
*
|
||||
* @ingroup grove
|
||||
* @snippet groveled.cxx Interesting
|
||||
*/
|
||||
class GroveLed: public Grove {
|
||||
@ -63,6 +68,7 @@ class GroveLed: public Grove {
|
||||
*
|
||||
* Very basic UPM module for grove temperature sensor on analog
|
||||
*
|
||||
* @ingroup grove
|
||||
* @snippet grovetemp.cxx Interesting
|
||||
*/
|
||||
class GroveTemp: public Grove {
|
||||
@ -90,6 +96,7 @@ class GroveTemp: public Grove {
|
||||
*
|
||||
* Very basic UPM module for grove Light sensor on analog
|
||||
*
|
||||
* @ingroup grove
|
||||
* @snippet grovelight.cxx Interesting
|
||||
*/
|
||||
class GroveLight: public Grove {
|
||||
|
Reference in New Issue
Block a user