We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e992269 commit b03317eCopy full SHA for b03317e
esp32-cam-webserver.ino
@@ -247,6 +247,11 @@ void WifiSetup() {
247
delay(100);
248
flashLED(300);
249
Serial.println("Starting WiFi");
250
+
251
+ // Disable power saving on WiFi to improve responsiveness
252
+ // (https://github.com/espressif/arduino-esp32/issues/1484)
253
+ WiFi.setSleep(false);
254
255
Serial.print("Known external SSIDs: ");
256
if (stationCount > firstStation) {
257
for (int i=firstStation; i < stationCount; i++) Serial.printf(" '%s'", stationList[i].ssid);
0 commit comments