Disable webrepl and AP_IF

This commit is contained in:
arofarn 2020-05-16 09:06:18 +02:00
parent 7ddb19f53a
commit 22e2506dfa
1 changed files with 6 additions and 2 deletions

View File

@ -5,9 +5,13 @@
import gc
import time
import network
import webrepl
# import webrepl
from config import KNOWN_WIFI_AP
# Disable AP
WLAN = network.WLAN(network.AP_IF)
WLAN.active(False)
# Connect to one of the known wifi AP
WLAN = network.WLAN(network.STA_IF)
WLAN.active(True)
@ -33,7 +37,7 @@ for ap in AP_LIST:
print("Wifi time-out")
break
webrepl.start()
# webrepl.start()
print("Boot.py : Done")
gc.collect()