-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_settings.toml
More file actions
26 lines (21 loc) · 1014 Bytes
/
Copy pathexample_settings.toml
File metadata and controls
26 lines (21 loc) · 1014 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# example_settings.toml
# ---------------------------------------------------------------------
# Copy this file to settings.toml and fill in your real values.
# settings.toml is gitignored and must NEVER be committed.
# ---------------------------------------------------------------------
# wifi_connection tries networks in priority order and (by default) only
# attempts SSIDs it can actually see in a scan. Use EITHER style below,
# or both together.
# Style 1 -- single network using CircuitPython's built-in variables.
# Treated as priority 0 (tried first).
CIRCUITPY_WIFI_SSID = "MyHomeNetwork"
CIRCUITPY_WIFI_PASSWORD = "changeme"
# Style 2 -- multiple networks, tried in numeric order (priority 1, 2, ...).
# Supports WIFI_SSID0 / WIFI_PASSWORD0 through WIFI_SSID9 / WIFI_PASSWORD9.
WIFI_SSID0 = "MyHomeNetwork"
WIFI_PASSWORD0 = "changeme"
WIFI_SSID1 = "MyPhoneHotspot"
WIFI_PASSWORD1 = "changeme"
# WIFI_SSID2 = "Workshop-2G"
# WIFI_PASSWORD2 = "changeme"
# ... up to WIFI_SSID9 / WIFI_PASSWORD9