From d54ba313f1871369ba5c0828478de109a4c6593d Mon Sep 17 00:00:00 2001 From: Jason Pelzer Date: Thu, 18 Mar 2021 22:54:39 -0400 Subject: [PATCH] Removed race web page race condition in nextionHandleInput Removed call to webServer.handleClient() in nextionHandleInput() which could cause the event loop() to lock up. --- Arduino_Sketch/HASwitchPlate/HASwitchPlate.ino | 1 - 1 file changed, 1 deletion(-) diff --git a/Arduino_Sketch/HASwitchPlate/HASwitchPlate.ino b/Arduino_Sketch/HASwitchPlate/HASwitchPlate.ino index 8248c8a..5651f9c 100644 --- a/Arduino_Sketch/HASwitchPlate/HASwitchPlate.ino +++ b/Arduino_Sketch/HASwitchPlate/HASwitchPlate.ino @@ -812,7 +812,6 @@ void nextionHandleInput() nextionProcessInput(); } - webServer.handleClient(); // webServer loop telnetHandleClient(); // telnet client loop yield(); }