|
ReactESP 3.3.1
Asynchronous programming for the ESP microcontrollers
|
| Creactesp::EventInterface | EventInterface defines the interface for all events |
| Creactesp::Event | Events are code to be called when a given condition is fulfilled |
| Creactesp::ISREvent | Event that is triggered on an input pin change |
| Creactesp::TimedEvent | TimedEvents are called based on elapsing of time |
| Creactesp::DelayEvent | Event that is triggered after a certain time delay |
| Creactesp::RepeatEvent | Event that is triggered repeatedly |
| Creactesp::UntimedEvent | Events that are triggered based on something else than time |
| Creactesp::StreamEvent | Event that is triggered when there is input available at the given Arduino Stream |
| Creactesp::TickEvent | Event that is triggered unconditionally at each execution loop |
| Creactesp::EventLoop | Asynchronous event loop supporting timed (repeating and non-repeating), interrupt and stream events |
| Creactesp::TriggerTimeCompare | Strict total ordering for TimedEvent pointers |