doxygen: add groups for all modules

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2014-09-22 16:37:36 +01:00
parent e7a32b9882
commit befba8c18d
41 changed files with 202 additions and 37 deletions

View File

@ -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 {