Skip to content
Snippets Groups Projects
Commit f17b250f authored by dos's avatar dos Committed by dos
Browse files

py,st3m: settings: Remove camp's SSID from default config

When there's a SSID set, py,st3m will call iface.connect() with it
on WiFi setup. This causes IDF to try to connect indefinitely, so
st3m.wifi.is_connecting() always reports True. This then leads to
confusing user experience.

Since the camp's network does not exist anymore, there's no point
in trying to connect to it. Remove it from the default config.
parent ead39471
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,7 @@ onoff_wifi = OnOffTunable("Enable WiFi on Boot", "system.wifi.enabled", False)
onoff_wifi_preference = OnOffTunable(
"Let apps change WiFi", "system.wifi.allow_apps_to_change_wifi", True
)
str_wifi_ssid = StringTunable("WiFi SSID", "system.wifi.ssid", "Camp2023-open")
str_wifi_ssid = StringTunable("WiFi SSID", "system.wifi.ssid", None)
str_wifi_psk = ObfuscatedStringTunable("WiFi Password", "system.wifi.psk", None)
str_hostname = StringTunable("Hostname", "system.hostname", "flow3r")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment