Skip to content

Commit 0a8f916

Browse files
authored
Merge pull request #110 from OpenEVSE/wifi_ssid_fix
Display the actual SSID/password on LCD not a hardcoded string
2 parents 5f38c09 + c12846f commit 0a8f916

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/net_manager.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ startAP() {
9696
ipaddress = tmpStr;
9797
DEBUG.print("AP IP Address: ");
9898
DEBUG.println(tmpStr);
99-
lcd_display(F("SSID: OpenEVSE"), 0, 0, 0, LCD_CLEAR_LINE);
100-
lcd_display(F("Pass: openevse"), 0, 1, 15 * 1000, LCD_CLEAR_LINE);
99+
lcd_display(softAP_ssid_ID, 0, 0, 0, LCD_CLEAR_LINE);
100+
lcd_display(String(F("Pass: ")) + softAP_password, 0, 1, 15 * 1000, LCD_CLEAR_LINE);
101101

102102
apClients = 0;
103103
}

0 commit comments

Comments
 (0)