| 65 | } |
| 66 | |
| 67 | void IRAM_ATTR handleButton1() { |
| 68 | unsigned long currentTime = millis(); |
| 69 | if (currentTime - lastPressTime > debounceDelay) { |
| 70 | ChangeRequested1 = true; |
| 71 | lastPressTime = currentTime; |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void IRAM_ATTR handleButton2() { |
| 76 | unsigned long currentTime = millis(); |
nothing calls this directly
no outgoing calls
no test coverage detected