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

Update WifiESP32.cpp

Fix SSID for AP from DCC_ to DCCEX_
This commit is contained in:
Fred 2023-06-22 19:39:24 -04:00 committed by GitHub
parent 99b6ca025a
commit fe7a7efb1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -176,7 +176,7 @@ bool WifiESP::setup(const char *SSid,
}
if (!haveSSID) {
// prepare all strings
String strSSID("DCC_");
String strSSID("DCCEX_");
String strPass("PASS_");
String strMac = WiFi.macAddress();
strMac.remove(0,9);