| 61 | } |
| 62 | |
| 63 | void IS_Button::runInterrupt() |
| 64 | { |
| 65 | //Capture time of button down event so we can figure it whether to send "pushed" or "held" on button release |
| 66 | m_lTimeBtnPressed = millis(); |
| 67 | |
| 68 | //Serial.println("IS_Button: in runInterrupt()"); |
| 69 | } |
| 70 | |
| 71 | void IS_Button::runInterruptEnded() |
| 72 | { |
nothing calls this directly
no outgoing calls
no test coverage detected