micropython-skeleton/boot.py

14 lines
293 B
Python
Raw Permalink Normal View History

2022-04-26 19:17:21 +00:00
# Give time to cancel this boot script
import time
print("Press Ctrl-C to stop boot script...")
time.sleep(2)
2018-02-27 07:47:00 +00:00
# Connect to wireless network as client
import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
2022-04-26 19:17:21 +00:00
wlan.connect("k-space.ee legacy")
while not wlan.isconnected():
pass