debounce progbutton

This commit is contained in:
Bernhard 2019-09-09 20:49:04 +02:00
parent 7aa4343c6a
commit 1b026f3d4d

View File

@ -14,9 +14,15 @@ KnxFacade<Esp32Platform, Bau57B0> knx;
#define ICACHE_RAM_ATTR
#endif
#ifndef __linux__
uint32_t lastpressed=0;
#endif
ICACHE_RAM_ATTR void buttonUp()
{
#ifndef __linux__
knx._toogleProgMode = true;
if (millis() - lastpressed > 200){
knx._toogleProgMode = true;
lastpressed = millis();
}
#endif
}
}