Symptoms seem very similar to #3712 but I have no such dhcp weirdness on my network: I'm trying to connect it to my main AP/router. I have a MatrixPortal that connects fine, but the MagTag will either say network not found or "Connection Error: Unknown failure".
I'm using essentially the same test code as the other issue:
import wifi
from secrets import secrets
for network in wifi.radio.start_scanning_networks():
print("\t'%s'\t\tRSSI: %d\tChannel: %d" % (network.ssid, network.rssi, network.channel))
wifi.radio.stop_scanning_networks()
print("connecting...")
wifi.radio.connect(ssid=secrets['ssid'], password=secrets['password'])
print("connected.")
My network does appear there, but then we get:
connecting...
Traceback (most recent call last):
File "code.py", line 8, in <module>
ConnectionError: Unknown failure
I've tested with 6.0 beta 3 as well as adafruit-circuitpython-adafruit_magtag_2.9_grayscale-en_US-20210102-ad2ee09.uf2 - both act the same.
I have tried rebooting the router, no luck. (It's a TP-Link Archer C8: an N/AC router.) It can connect to my IOT-specific router (a Linksys E2500 v3 N router running DD-WRT) OK but that router intentionally doesn't allow any of its clients to access the internet, so I can't run the samples that use internet-hosted APIs.
Symptoms seem very similar to #3712 but I have no such dhcp weirdness on my network: I'm trying to connect it to my main AP/router. I have a MatrixPortal that connects fine, but the MagTag will either say network not found or "Connection Error: Unknown failure".
I'm using essentially the same test code as the other issue:
My network does appear there, but then we get:
I've tested with 6.0 beta 3 as well as
adafruit-circuitpython-adafruit_magtag_2.9_grayscale-en_US-20210102-ad2ee09.uf2- both act the same.I have tried rebooting the router, no luck. (It's a TP-Link Archer C8: an N/AC router.) It can connect to my IOT-specific router (a Linksys E2500 v3 N router running DD-WRT) OK but that router intentionally doesn't allow any of its clients to access the internet, so I can't run the samples that use internet-hosted APIs.