forked frommicropython/micropython
- Notifications
You must be signed in to change notification settings - Fork1.3k
Open
Milestone
Description
CircuitPython version and board name
AdafruitCircuitPython9.2.8on2025-05-28;RaspberryPiPicoWwithrp2040
Code/REPL
importwifiwifi.radio.connect(ssid="myssid",password="mypass")
Behavior
main.pyoutput:Traceback (mostrecentcalllast):File"main.py",line3,in<module>ConnectionError:Unknownfailure1
The RPi Pico W fails to connect to the WPA3 WLAN network; the handshake also does not appear in the hostapd logs at all (as opposed to handshakes from other devices).
Description
The WiFi has been setup with hostapd using this config:
# Logging configlogger_syslog=0logger_syslog_level=2logger_stdout=-1logger_stdout_level=0# Basic interface configinterface=wlx***********acountry_code=DEhw_mode=gieee80211n=1ieee80211d=1channel=5# Indoor Tasmota Networkssid=myotherssidauth_algs=1wpa=2wpa_key_mgmt=WPA-PSKrsn_pairwise=CCMPieee80211w=1wpa_passphrase={{ passphrase.myotherssid }}ap_isolate=1# Outdoor WPA3 Networkbss=wlx***********bssid=myssidauth_algs=1wpa=2wpa_key_mgmt=SAErsn_pairwise=CCMPieee80211w=2wpa_passphrase={{ passphrase.myssid }}ap_isolate=1
Other devices can connect to the WPA3 networkmyssid
without problems.
Additional information
If I change the network config to:
# Outdoor WPA3 Networkbss=wlx***********bssid=myssidauth_algs=1wpa=2#wpa_key_mgmt=SAEwpa_key_mgmt=WPA-PSKrsn_pairwise=CCMP#ieee80211w=2ieee80211w=1wpa_passphrase={{ passphrase.myssid }}ap_isolate=1
the Pi can connect flawlessly too; however as theofficial board page explicitly mentions WPA3, I think the Pi should be able to connect too.