| 57 | |
| 58 | |
| 59 | void IRAM_ATTR handleButton() { |
| 60 | unsigned long currentTime = millis(); |
| 61 | if (currentTime - lastPressTime > debounceDelay) { |
| 62 | ChangeRequested = true; |
| 63 | lastPressTime = currentTime; |
| 64 | } |
| 65 | } |
| 66 | |
| 67 | void IRAM_ATTR handleButton1() { |
| 68 | unsigned long currentTime = millis(); |
nothing calls this directly
no outgoing calls
no test coverage detected