Restart project based on regular ESP32 and Microdot

This commit is contained in:
Lexi / Zoe 2022-11-04 20:28:35 +01:00
parent 167847cd28
commit 56e7a1d2de
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
12 changed files with 1661 additions and 119 deletions

9
src/wlan_cfg.example.py Normal file
View 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')