Skip to content

Commit 3ce876e

Browse files
authored
Merge pull request #6 from hmueller01/ESP32_WebServer_handleClient_delay
remove handleClient delay for ESP32
2 parents 6cc7faf + bbea0b5 commit 3ce876e

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/ESP_WiFiManager_Lite.h

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -916,12 +916,6 @@ class ESP_WiFiManager_Lite
916916
if (server)
917917
{
918918
server->handleClient();
919-
920-
// Fix ESP32-S2 issue with WebServer (https://github.com/espressif/arduino-esp32/issues/4348)
921-
if ( String(ARDUINO_BOARD) == "ESP32S2_DEV" )
922-
{
923-
delay(1);
924-
}
925919
}
926920

927921
return;

0 commit comments

Comments
 (0)