Compare commits

...

1 Commits

Author SHA1 Message Date
6dd6f28db0 added active function 2022-03-22 15:55:18 +01:00
2 changed files with 8 additions and 0 deletions

View File

@@ -55,6 +55,13 @@ void PowerSwitcher::turnOff() {
state = WAIT_OFF;
}
bool PowerSwitcher::active() {
if(state == WAIT_OFF or state == WAIT_ON) {
return true;
}
return false;
}
PowerSwitcher::SwitchReturn_t PowerSwitcher::howManySwitches() {
if (secondSwitch == power::NO_SWITCH) {
return ONE_SWITCH;

View File

@@ -22,6 +22,7 @@ class PowerSwitcher : public HasReturnvaluesIF {
State_t setStartState = SWITCH_IS_OFF);
void turnOn();
void turnOff();
bool active();
void doStateMachine();
State_t getState();
ReturnValue_t checkSwitchState();