QUERY · ISSUE
ESP32: WebREPL: network.WLAN(network.AP_IF) is not set to active on boot.
port-esp32
The AP is set up, but is not set to active on boot. Per the documentation, this should "just work"?
I can connect to the device using the serial REPL, and issue:
import network
network.WLAN(network.AP_IF).active(True)
To enable the AP.
CANDIDATE · ISSUE
ESP32: network.WLAN(network.AP_IF).active(True) hangs on master branch (IDF v5)
bugport-esp32
Hello everyone,
Running this on ESP32 (TinyS3) runs forever.
import network
network.WLAN(network.AP_IF).active(False)
network.WLAN(network.AP_IF).config(ssid="test",key="testtest")
network.WLAN(network.AP_IF).active(True)
Full version name : MicroPython v1.20.0-261-g813d559bc on 2023-06-30; TinyS3 with ESP32-S3-FN8
Probably an issue due to the new IDF I guess.