This commit is contained in:
arofarn 2020-04-21 19:10:31 +02:00
parent 7500be139d
commit b6c6385308
1 changed files with 6 additions and 5 deletions

View File

@ -1,6 +1,7 @@
# This file is executed on every boot (including wake-boot from deepsleep) """This file is executed on every boot (including wake-boot from deepsleep)"""
#import esp
#esp.osdebug(None) # import esp
# esp.osdebug(None)
import gc import gc
import time import time
import network import network
@ -10,9 +11,9 @@ from wifi_config import known_wifi_ap
# Connect to one of the known wifi AP # Connect to one of the known wifi AP
WLAN = network.WLAN(network.STA_IF) WLAN = network.WLAN(network.STA_IF)
WLAN.active(True) WLAN.active(True)
wifi_ap_list = WLAN.scan() AP_LIST = WLAN.scan()
for ap in wifi_ap_list: for ap in AP_LIST:
if WLAN.isconnected(): if WLAN.isconnected():
break break