#WiFi AP password issues
1 messages · Page 1 of 1 (latest)
You could try doing a wifi scan to confirm that the ESP32 is only seeing one AP with the SSID, and that ESP32 thinks it's in WPA2 mode
print("Available WiFi networks:")
for network in wifi.radio.start_scanning_networks():
print("\t%s\t\tRSSI: %d\tChannel: %d" % (str(network.ssid, "utf-8"),
network.rssi, network.channel))
wifi.radio.stop_scanning_networks()
that's a little tough to read at least for me; it's from https://learn.adafruit.com/adafruit-funhouse/circuitpython-internet-test
Oh, I was having the ESP act as the AP, if that makes sense.
from time import sleep
from wifi import radio
radio.start_ap('ssid_of_choice', 'password')
while True:
pass
I am going to try it again now that I am at my computer again and see what I get.
Good luck!
Okay, so I ran that same snippet of code again, with a different SSID and it worked as desired.