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