Call the Arduino delay() not WebOTA.delay()

This was resulting in a recursive loop forever
This commit is contained in:
Scott Baker 2019-03-19 09:17:44 -07:00
parent 1e24251cfd
commit cf6f1de11b

View File

@ -207,7 +207,7 @@ void WebOTA::delay(int ms) {
while ((millis() - last) < ms) {
OTAServer.handleClient();
delay(5);
::delay(5);
}
}