micropy-light/code/boot.py

40 lines
873 B
Python
Raw Normal View History

2020-04-21 19:10:31 +02:00
"""This file is executed on every boot (including wake-boot from deepsleep)"""
# import esp
# esp.osdebug(None)
2018-09-13 17:45:22 +02:00
import gc
2018-11-18 23:15:25 +01:00
import time
import network
2018-11-18 10:28:07 +01:00
import webrepl
2020-04-21 19:20:49 +02:00
from config import known_wifi_ap
2018-11-18 23:15:25 +01:00
# Connect to one of the known wifi AP
2020-04-21 17:56:30 +02:00
WLAN = network.WLAN(network.STA_IF)
WLAN.active(True)
2020-04-21 19:10:31 +02:00
AP_LIST = WLAN.scan()
2018-11-18 23:15:25 +01:00
2020-04-21 19:10:31 +02:00
for ap in AP_LIST:
2020-04-21 17:56:30 +02:00
if WLAN.isconnected():
2018-11-18 23:15:25 +01:00
break
ap_ssid = ap[0].decode("utf-8")
if ap_ssid in known_wifi_ap.keys():
print("Known wifi network found : {}".format(ap_ssid))
print("Try to connect...")
2020-04-21 17:56:30 +02:00
WLAN.connect(ap_ssid, known_wifi_ap[ap_ssid])
DELAY = 0
2018-11-18 23:15:25 +01:00
2020-04-21 17:56:30 +02:00
while not WLAN.isconnected():
print("Waiting for wifi to connect...")
time.sleep(1)
DELAY += 1
if DELAY > 10:
print("Wifi time-out")
break
2018-11-18 23:15:25 +01:00
2018-11-18 10:28:07 +01:00
webrepl.start()
2018-11-18 23:15:25 +01:00
print("Boot.py : Done")
2018-09-13 17:45:22 +02:00
gc.collect()