Files
obsw/mission/devices/LightHandler.cpp
2023-10-19 07:26:44 +02:00

25 lines
506 B
C++

#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;
}