7 lines
247 B
Python
7 lines
247 B
Python
# Just a dic with each known wifi access point's SSID and WPA key
|
|
# Update it with your own setting and rename it "wifi_config.py"
|
|
|
|
known_wifi_ap = {"wifi_ssid": "wifi_wpa_key",
|
|
"wifi_ssid_2": "wifi_wpa_key_2",
|
|
}
|