public constructor
| 41 | //public |
| 42 | //constructor |
| 43 | EX_Switch::EX_Switch(const __FlashStringHelper *name, byte pin, bool startingState, bool invertLogic) : |
| 44 | Executor(name), |
| 45 | m_bCurrentState(startingState), |
| 46 | m_bInvertLogic(invertLogic) |
| 47 | { |
| 48 | setPin(pin); |
| 49 | } |
| 50 | |
| 51 | //destructor |
| 52 | EX_Switch::~EX_Switch() |
nothing calls this directly
no outgoing calls
no test coverage detected