esp32-lightbar/src/wlan_cfg.example.py

10 lines
337 B
Python
Raw Normal View History

# Example file for WLAN configuration. Copy to wlan_cfg.py and adjust!
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')