Disabling WiFi on LoPy
-
Question on @pycomIOT Hello Pycom, I want to disable the wifi component on my LoPy. However,I don't know how to do it. Could you help me out please? thx
-
There is also
pycom.wifi_on_boot
method which can be set toFalse
. more info in the Docs
-
This code should do the job:
from network import WLAN wlan = WLAN() wlan.deinit()
Note: You need firmware release 1.4.0.b1 or newer.