AirLift FeatherWing - ESP32 WiFi Connection issues

For CircuitPython issues, ask in the Adafruit CircuitPython forum.

Moderators: adafruit_support_bill, adafruit

Please be positive and constructive with your questions and comments.
Locked
User avatar
Grayspace
 
Posts: 1
Joined: Mon Jan 03, 2022 6:47 pm

AirLift FeatherWing - ESP32 WiFi Connection issues

Post by Grayspace »

I'm using the AirLift FeatherWing - ESP32 WiFi Co-Processor together with the Feather M4 board and unable to connect to my home WiFi network. Working through this project: https://learn.adafruit.com/air-quality- ... et-connect and using its example code, as below:

# SPDX-FileCopyrightText: 2019 ladyada for Adafruit Industries
# SPDX-License-Identifier: MIT

import board
import busio
from digitalio import DigitalInOut
import adafruit_requests as requests
import adafruit_esp32spi.adafruit_esp32spi_socket as socket
from adafruit_esp32spi import adafruit_esp32spi

# Get wifi details and more from a secrets.py file
#try:
# from secrets import secrets
#except ImportError:
# print("WiFi secrets are kept in secrets.py, please add them there!")
# raise

print("ESP32 SPI webclient test")

TEXT_URL = "http://wifitest.adafruit.com/testwifi/index.html"
JSON_URL = "http://api.coindesk.com/v1/bpi/currentprice/USD.json"


# If you are using a board with pre-defined ESP32 Pins:
# esp32_cs = DigitalInOut(board.ESP_CS)
# esp32_ready = DigitalInOut(board.ESP_BUSY)
# esp32_reset = DigitalInOut(board.ESP_RESET)

# If you have an AirLift Shield:
# esp32_cs = DigitalInOut(board.D10)
# esp32_ready = DigitalInOut(board.D7)
# esp32_reset = DigitalInOut(board.D5)

# If you have an AirLift Featherwing or ItsyBitsy Airlift:
esp32_cs = DigitalInOut(board.D13)
esp32_ready = DigitalInOut(board.D11)
esp32_reset = DigitalInOut(board.D12)

# If you have an externally connected ESP32:
# NOTE: You may need to change the pins to reflect your wiring
# esp32_cs = DigitalInOut(board.D9)
# esp32_ready = DigitalInOut(board.D10)
# esp32_reset = DigitalInOut(board.D5)

spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
esp = adafruit_esp32spi.ESP_SPIcontrol(spi, esp32_cs, esp32_ready, esp32_reset)

requests.set_socket(socket, esp)

if esp.status == adafruit_esp32spi.WL_IDLE_STATUS:
print("ESP32 found and in idle mode")
print("Firmware vers.", esp.firmware_version)
print("MAC addr:", [hex(i) for i in esp.MAC_address])

for ap in esp.scan_networks():
print("\t%s\t\tRSSI: %d" % (str(ap["ssid"], "utf-8"), ap["rssi"]))

print("Connecting to AP...")
while not esp.is_connected:
try:
esp.connect_AP("(((my wifi network's ssid)))", "(((my wifi network's password)))") #
except RuntimeError as e:
print("could not connect to AP, retrying: ", e)
continue
print("Connected to", str(esp.ssid, "utf-8"), "\tRSSI:", esp.rssi)
print("My IP address is", esp.pretty_ip(esp.ip_address))
print(
"IP lookup adafruit.com: %s" % esp.pretty_ip(esp.get_host_by_name("adafruit.com"))
)
print("Ping google.com: %d ms" % esp.ping("google.com"))

# esp._debug = True
print("Fetching text from", TEXT_URL)
r = requests.get(TEXT_URL)
print("-" * 40)
print(r.text)
print("-" * 40)
r.close()

print()
print("Fetching json from", JSON_URL)
r = requests.get(JSON_URL)
print("-" * 40)
print(r.json())
print("-" * 40)
r.close()

print("Done!")


I am able to see in serial that the board recognizes my network, yet fails to connect (see attached image). What will fix the connection? Is my router blocking, perhaps with a built-in security setting? It is a TP-Link Archer C20 AC750 wireless dual band router, brand new. Sorry I'm new to this.
Attachments
ssid connect failure.jpg
ssid connect failure.jpg (242.15 KiB) Viewed 121 times

User avatar
anecdata
 
Posts: 10
Joined: Wed Jan 05, 2022 5:57 pm

Re: AirLift FeatherWing - ESP32 WiFi Connection issues

Post by anecdata »

The RSSI (signal strength) looks fine for the circled AP in the scan. But the exception refers to an SSID that is not in the scanned list. The two circled APs are different SSIDs. SSID is distinct from a hostname you may see in your router.

Locked
Please be positive and constructive with your questions and comments.

Return to “Wireless: WiFi and Bluetooth”