From b41777f64ddbbb4ef61bdffa243b04b0ff82e2dc Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 12 Dec 2017 02:18:52 +0100 Subject: [PATCH] wifi profiles: remove bad comment, rename file to wifi.dat passwd.dat is too unspecific, could be passwords of whatever. also, we maybe could put more in there, not just ssid and password, but more data about the known wifi networks. --- networkconfig.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/networkconfig.py b/networkconfig.py index 22af648..afe6e8d 100644 --- a/networkconfig.py +++ b/networkconfig.py @@ -7,8 +7,7 @@ import time ssid_name = "WifiManager" ssid_password = "tayfunulu" -# list of WiFi networks (CSV format: ssid,password) -NETWORK_PROFILES = 'passwd.dat' +NETWORK_PROFILES = 'wifi.dat' wlan_ap = network.WLAN(network.AP_IF) wlan_sta = network.WLAN(network.STA_IF)