12#ifndef ARDUINO_ISR_ATTR
13#define ARDUINO_ISR_ATTR
19 typedef void (*ButtonPressCallback)();
22 static const unsigned long btn_reset = 800UL, btn_debounce = 40UL, btn_longPress = 300UL;
23 volatile unsigned long btn_times[10];
24 volatile unsigned char ti = 0;
26 ButtonPressCallback callback[3] = {
nullptr,
nullptr,
nullptr};
79 bool on(Action action, ButtonPressCallback cb);