Restart project based on regular ESP32 and Microdot
This commit is contained in:
parent
167847cd28
commit
56e7a1d2de
12 changed files with 1661 additions and 119 deletions
9
src/wlan_cfg.example.py
Normal file
9
src/wlan_cfg.example.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# 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')
|
||||
Loading…
Add table
Add a link
Reference in a new issue