2022-11-05 03:18:48 +01:00
|
|
|
# Example file for WLAN configuration. Copy to src/wlan_cfg.py, adjust and upload to the board.
|
2022-11-04 20:28:35 +01:00
|
|
|
SSID = 'Example SSID'
|
|
|
|
|
PASSWORD = 'ultra secret wlan password'
|
|
|
|
|
|
|
|
|
|
# Automatic IP configuration via DHCP (default)
|
|
|
|
|
IFCONFIG = None
|
|
|
|
|
|
|
|
|
|
# Example for static IP configuration (IP, Subnet, Gateway, DNS):
|
|
|
|
|
# IFCONFIG = ('192.168.0.4', '255.255.255.0', '192.168.0.1', '8.8.8.8')
|