rwmingis / InterruptButton

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' and 'Double-Click'. The actions associated it these events may be executed Asynchronously, Synchronously, or a Hybrid between the two.
MIT License
30 stars 8 forks source link

Compilation issue (fix #24) #23

Closed mathieucarbou closed 10 months ago

mathieucarbou commented 10 months ago

Fix #24 (You forgot the commas...)

rwmingis commented 10 months ago

Funny, my platformio instance compiled fine. Incorporated.

mathieucarbou commented 10 months ago

Funny, my platformio instance compiled fine. Incorporated.

I am using strinct library checking and compilation flags:

lib_compat_mode = strict
lib_ldf_mode = deep+
build_flags =
  -Wall -Wextra -Werror
  -std=c++17
  -std=gnu++17