RoboidControl-cpp/Switch.cpp
2024-12-18 16:53:54 +01:00

11 lines
208 B
C++

#include "Switch.h"
Switch::Switch() { this->type = (unsigned char)Type::Switch; }
bool Switch::IsOn() { return false; }
bool Switch::IsOff() {
bool isOn = IsOn();
bool isOff = !isOn;
return isOff;
}