Search found 2 matches
- Tue Nov 06, 2018 1:19 pm
- Forum: ESP-IDF
- Topic: Using WPA2 Enterprise with Python?
- Replies: 6
- Views: 10565
Re: Using WPA2 Enterprise with Python?
Greetings, If someone needs it - I've got a successful connection with eduroam, but there are few limitations: - This code runs with the newest development Framework code 3.1 / 3.2 (beta), - Paste your Certificate in ca_pem array, - Fill code (or create a remote .h file) with your credentials, - You...
- Mon Oct 22, 2018 2:51 pm
- Forum: ESP-IDF
- Topic: Using WPA2 Enterprise with Python?
- Replies: 6
- Views: 10565
Re: Using WPA2 Enterprise with Python?
Hi, According to Micropython documentation ( https://docs.micropython.org/en/latest/library/network.html ) it should look something like this: from network import WLAN wlan = WLAN(mode=WLAN.STA) wlan.connect(ssid='eduroam', auth=(WLAN.WPA2_ENT, 'username', 'password'), identity='identity') but so fa...