-
MicroPython is maybe the weirdest operating system I’ve ever used. (-:
-
…networking is initialized in boot.py:
import network sta_if = network.WLAN(network.STA_IF) sta_if.active(True) sta_if.connect(ssid, password)
import network
sta_if = network.WLAN(network.STA_IF)
sta_if.active(True)
sta_if.connect(ssid, password)