added active function

This commit is contained in:
Robin Müller 2022-03-22 15:55:18 +01:00
parent d791fc87b7
commit 6dd6f28db0
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
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();