InterruptButton icon indicating copy to clipboard operation
InterruptButton copied to clipboard

This is an interrupt based button event library for the ESP32. It enables binding user defined actions to button events including 'Key Down', Key Up' , 'Key Press', 'Long Key Press' 'AutoRepeat Press...

Results 10 InterruptButton issues
Sort by recently updated
recently updated
newest added

I get warnings( errors) from the compiler from tag totalPolls and can not download to the ESP32-WROOM-DA Module In Win10 this is just Warnings. If I use Arduino program 1.8.19...

I've added a mutex to correct the crash when using the desctrutor for asyncrone events with a pointer

- Close #18 - Fix #24 **Usage:** declare the button in your class: ```cpp private: InterruptButton _button; }; ``` In the begin method, initialise the button as usual. But note...

Fix #20 by converting all the mix of CRLF and LF => LF.

I've isolated the Github workflow file if you change your mind one day ;) Fix #25.

There's a mix of CRLF in the source files which is not good... Source files usually by convention us LF, and CRLF only locally on Windows machine if git is...

@rwmingis : I am following with interest issue https://github.com/rwmingis/InterruptButton/issues/17: I am using your library which is pretty cool. I found that when I activate it in my project, the heap...

hi, first: thanks for your GREAT work - I am programming ESP32 and I needed such library to work in asynch mode and once I found it I am so...