This repository was archived by the owner on Sep 6, 2023. It is now read-only.

Description
I want to use WPA2-Enterprise on ESP32.
I tried coding with reference to the 8266 example, but failed because "WLAN.STA" was not found. How can I do it?
"""
from network import WLAN
wlan = WLAN(mode = WLAN.STA)
wlan.connect(ssid = "SSID",auth = (WLAN.WPA2_ENT,"ID","PW"),identity = "identity")
"""