doxygen: Added documentation for servo base and es08a

Signed-off-by: Kiveisha Yevgeniy <yevgeniy.kiveisha@intel.com>
This commit is contained in:
Kiveisha Yevgeniy
2014-06-09 16:00:07 +00:00
parent 1ff0e5ee57
commit 814cc4a0e8
3 changed files with 53 additions and 0 deletions

View File

@@ -31,9 +31,26 @@ namespace upm {
#define MIN_PULSE_WIDTH 600
#define MAX_PULSE_WIDTH 2500
/**
* @brief C++ API for ES08A servo component
*
* This file defines the ES08A C++ interface for libes08a
*
* @snippet es08a.cxx Interesting
*
*/
class ES08A : public Servo {
public:
/**
* Instanciates a ES08A object
*
* @param pin servo pin number
*/
ES08A (int pin);
/**
* ES08A object destructor.
*/
~ES08A ();
};