public constructor
| 37 | //public |
| 38 | //constructor |
| 39 | IS_Button::IS_Button(const __FlashStringHelper *name, byte pin, long reqNumMillisHeld, bool iState, bool internalPullup, long numReqCounts) : |
| 40 | InterruptSensor(name, pin, iState, internalPullup, numReqCounts), //use parent class' constructor |
| 41 | m_lreqNumMillisHeld(reqNumMillisHeld) |
| 42 | { |
| 43 | } |
| 44 | |
| 45 | //destructor |
| 46 | IS_Button::~IS_Button() |
nothing calls this directly
no outgoing calls
no test coverage detected