Skip to content

Commit c12846f

Browse files
committed
Display the actual SSID/password not a hardcoded string
Fixes #89
1 parent 8743e4b commit c12846f

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)