No Connection to Wifi with AUTH_WPA_WPA2_PSK
Hey,
first of all: i really love your work!
Every time i work on esp´s i complain about the c-language, but with micropython i can programm the devices in my favourite lanuage :)
Since iam using this firmware, i got no issues, but tody at work i faced the first:
the esp8266 with the latest stable version (1.14) can't connect to a Wifi, secured with the authmode "AUTH_WPA_WPA2_PSK".
But if i setup a wifi with the same credentials, but with "AUTH_WPA2_PSK", the device connects nearly instant...
Is there something i have to consider in my code?
Thank you :)
PS.: Sorry for my bad english ^^
Pico W - AP always without password?
Hey there, i want to open a secured access point with MP on the new Pico W like so:
ap = network.WLAN(network.AP_IF)
ap.active(True)
ap.config(essid='PICO', password='12349876')
The Acces Point is visible & i can connect to it, but it is not secured.
i tried to pass something like authmode=network.AUTH_WPA_WPA2_PSK but network does not have this (i guess) enums & when i tried to set it to 3 which should refer to WPA2 PSK, i noticed authmode is not even a valid config parameter, as it spits out the error: ValueError: unknown config param
Here is a thread, mentioning that problem as well: https://forums.raspberrypi.com/viewtopic.php?t=336901
Greetings from Vienna