I have started to use MicroPython on my NodeMCU as it is very quick to develop and debug. In many cases, I don’t need network access.
I assume it would be better to disable network access.
import network sta_if = network.WLAN(network.STA_IF) sta_if.active(False) ap_if = network.WLAN(network.AP_IF) ap_if.active(False)
Would you recommend I did this and are there any disadvantages ?
Peter