1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2024-11-23 08:06:13 +01:00

ESP32 Wifi AP mode no sleep

This commit is contained in:
Harald Barth 2022-08-05 16:14:51 +02:00
parent 5430711672
commit 608c7547fb

View File

@ -146,6 +146,7 @@ bool WifiESP::setup(const char *SSid,
strPass.concat(strMac);
WiFi.mode(WIFI_AP);
WiFi.setSleep(false);
if (WiFi.softAP(strSSID.c_str(),
havePassword ? password : strPass.c_str(),
channel, false, 8)) {