forked from ROMEO/obsw
Learning how Device Handlers do not work (yet)
This commit is contained in:
25
mission/devices/LightHandler.cpp
Normal file
25
mission/devices/LightHandler.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
#include <mission/devices/LightHandler.h>
|
||||
|
||||
|
||||
|
||||
LightHandler::LightHandler(object_id_t objectId, object_id_t comIF, CookieIF *comCookie)
|
||||
: DeviceHandlerBase(objectId, comIF, comCookie) {}
|
||||
|
||||
|
||||
LightHandler::~LightHandler() {}
|
||||
|
||||
|
||||
|
||||
|
||||
void LightHandler::doStartUp() {}
|
||||
|
||||
void LightHandler::doShutDown() {}
|
||||
|
||||
ReturnValue_t buildTransitionDeviceCommand(DeviceCommandId_t *id) {
|
||||
return returnvalue::OK;
|
||||
}
|
||||
|
||||
|
||||
ReturnValue_t LightHandler::buildNormalDeviceCommand(DeviceCommandId_t *id) {
|
||||
return returnvalue::OK;
|
||||
}
|
Reference in New Issue
Block a user