1
Answers
43
Views
0
Comments
How do I run a function every few seconds without blocking the ESP32?
I'm trying to periodically read a sensor and send its value, but I don't want to use a loop with a sleep because the device also needs to handle other work.
For example, I want something like this to run every 5 seco…