MCPcopy Create free account
hub / github.com/cifertech/nRFBox / handleButton1

Function handleButton1

nRFBox_V2/blackout.cpp:67–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void IRAM_ATTR handleButton1() {
68 unsigned long currentTime = millis();
69 if (currentTime - lastPressTime > debounceDelay) {
70 ChangeRequested1 = true;
71 lastPressTime = currentTime;
72 }
73}
74
75void IRAM_ATTR handleButton2() {
76 unsigned long currentTime = millis();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected