Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion adafruit_esp32spi/adafruit_esp32spi.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@

WL_NO_SHIELD = const(0xFF)
WL_NO_MODULE = const(0xFF)
WL_STOPPED = const(0xFE)
WL_IDLE_STATUS = const(0)
WL_NO_SSID_AVAIL = const(1)
WL_SCAN_COMPLETED = const(2)
Expand Down Expand Up @@ -424,7 +425,7 @@ def _send_command_get_response(
@property
def status(self):
"""The status of the ESP32 WiFi core. Can be WL_NO_SHIELD or WL_NO_MODULE
(not found), WL_IDLE_STATUS, WL_NO_SSID_AVAIL, WL_SCAN_COMPLETED,
(not found), WL_STOPPED, WL_IDLE_STATUS, WL_NO_SSID_AVAIL, WL_SCAN_COMPLETED,
WL_CONNECTED, WL_CONNECT_FAILED, WL_CONNECTION_LOST, WL_DISCONNECTED,
WL_AP_LISTENING, WL_AP_CONNECTED, WL_AP_FAILED"""
resp = self._send_command_get_response(_GET_CONN_STATUS_CMD)
Expand Down