Implement shutdown and reboot via API; add Makefile for deployment
This commit is contained in:
parent
56e7a1d2de
commit
f16f506332
11 changed files with 124 additions and 14 deletions
4
examples/webrepl_cfg.py
Normal file
4
examples/webrepl_cfg.py
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# Example file for WebREPL configuration. Copy to src/webrepl_cfg.py, adjust and upload to the board.
|
||||
|
||||
# Define the password for WebREPL here
|
||||
PASS = 'ultra-secret-webrepl-password'
|
||||
9
examples/wlan_cfg.py
Normal file
9
examples/wlan_cfg.py
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
# Example file for WLAN configuration. Copy to src/wlan_cfg.py, adjust and upload to the board.
|
||||
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