Hi, I have Raspberry Pi Pico 2 W running MicroPython v1.27.0
and I'm trying to connect to home wireless Orbi 350 router (latest router firmware)
With router configuration
"WPA3-Personal[SAE]" it won’t connect at all
but with “WPA-PSK [TKIP] + WPA2-PSK [AES]” it does connects fine
(using the same MicroPython code)
def do_connect():
import machine, network
wlan = network.WLAN()
wlan.active(True)
if not wlan.isconnected():
print('connecting to network...')
wlan.connect(ssid, pw)
while not wlan.isconnected():
machine.idle()
print('network config:', wlan.ipconfig('addr4'))
do_connect()
I've tried a second Pico2W with the same result.
Suggestions please?
and I'm trying to connect to home wireless Orbi 350 router (latest router firmware)
With router configuration
"WPA3-Personal[SAE]" it won’t connect at all
but with “WPA-PSK [TKIP] + WPA2-PSK [AES]” it does connects fine
(using the same MicroPython code)
def do_connect():
import machine, network
wlan = network.WLAN()
wlan.active(True)
if not wlan.isconnected():
print('connecting to network...')
wlan.connect(ssid, pw)
while not wlan.isconnected():
machine.idle()
print('network config:', wlan.ipconfig('addr4'))
do_connect()
I've tried a second Pico2W with the same result.
Suggestions please?
Statistics: Posted by PhilD892 — Wed Feb 18, 2026 9:29 pm — Replies 0 — Views 23