#WiFi AP password issues

1 messages · Page 1 of 1 (latest)

fallen echo
#

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()
deft stag
#

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
fallen echo
#

Oh, sorry... totally makes sense

#

WiFi AP password issues

deft stag
#

I am going to try it again now that I am at my computer again and see what I get.

fallen echo
#

Good luck!

deft stag
#

Okay, so I ran that same snippet of code again, with a different SSID and it worked as desired.

fallen echo
#

Dumb question but there's no chance that there's another AP with that SSID within range?

#

Anyway, glad you got it working!