You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello.
I am looking to create custom events so that I don't need to keep running the same routines/functions over and over again insidevoid loop(){}, practically making my code synchronously.
Is it possible to do something like this: https://github.com/esp32m/events but using the Arduino ESP32 Core: https://github.com/espressif/arduino-esp32 ?
I have a big project on an ESP32 with multiple modules, like reading a Wiegand Card, controlling some inputs, some buzzers, some LEDs, relays, etc.
I don't need these routines/functions running all the time. I would like to set up some listeners so that I can emit events when a Wiegand Card is read, or when there is a signal on an Input and only react then.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello.
I am looking to create custom events so that I don't need to keep running the same routines/functions over and over again inside
void loop(){}
, practically making my code synchronously.Is it possible to do something like this: https://github.com/esp32m/events but using the Arduino ESP32 Core: https://github.com/espressif/arduino-esp32 ?
I have a big project on an ESP32 with multiple modules, like reading a Wiegand Card, controlling some inputs, some buzzers, some LEDs, relays, etc.
I don't need these routines/functions running all the time. I would like to set up some listeners so that I can emit events when a Wiegand Card is read, or when there is a signal on an Input and only react then.
Beta Was this translation helpful? Give feedback.
All reactions