micropython / micropython-esp32

Old port of MicroPython to the ESP32 -- new port is at https://github.com/micropython/micropython
MIT License
675 stars 217 forks source link

How can I use WPA2-Enterprise on ESP32? #255

Closed Nyarn-WTF closed 5 years ago

Nyarn-WTF commented 5 years ago

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") """

dpgeorge commented 5 years ago

Enterprise is not currently supported on ethier esp8266 or esp32.

The main repository for MicroPython on esp32 is now at https://github.com/micropython/micropython

Nyarn-WTF commented 5 years ago

Thank you! Then I will ask the question from there next time.