Search found 1 match
- Tue Nov 02, 2021 4:25 am
- Forum: ESP32 Arduino
- Topic: Using delay with WebServer handleClient
- Replies: 3
- Views: 8201
Re: Using delay with WebServer handleClient
It seems to me that the test() function needs to be revised. The culprit is use of delay(). That function will rob processor cycles from your main loop. I would recommend a non blocking delay method. Refer to https://fvdm.com/come/blocking-vs-non-blocking-timers-in-arduino-and-particle for one metho...