00001
00002
00003 #ifndef _REC_ROBOTINO_COM_POWEROUTPUT_H_
00004 #define _REC_ROBOTINO_COM_POWEROUTPUT_H_
00005
00006 #include "rec/robotino/com/Actor.h"
00007
00008 namespace rec
00009 {
00010 namespace robotino
00011 {
00012 namespace com
00013 {
00023 class
00024 #ifdef WIN32
00025 # ifdef rec_robotino_com_EXPORTS
00026 __declspec(dllexport)
00027 #endif
00028 # ifdef rec_robotino_com2_EXPORTS
00029 __declspec(dllexport)
00030 #endif
00031 # ifdef rec_robotino_com3_EXPORTS
00032 __declspec(dllexport)
00033 #endif
00034 #endif
00035 PowerOutput : public Actor
00036 {
00037 public:
00038 PowerOutput();
00039
00046 void setValue( float controlPoint );
00047
00052 float current() const;
00053
00059 unsigned short rawCurrentMeasurment() const;
00060 };
00061 }
00062 }
00063 }
00064 #endif //_REC_ROBOTINO_COM_POWEROUTPUT_H_
00065