Closed
Description
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