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
{{ message }}
This repository has been archived by the owner on Nov 29, 2021. It is now read-only.
Event queue support to provide non-overlapping software interrupts for a programming model similar to Web page scripts.
Interrupt service handlers should disable the interrupt, and push an event onto the queue and then re-enable the interrupt. The loop() function should call dispatch() to handle the events from the queue
*/
#define EVENT_QUEUE_LENGTH 6
// add additional event names this enum and update WSEvent.cpp to match