File tree 2 files changed +7
-8
lines changed 2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 25
25
raise
26
26
27
27
# Debug Level
28
- # Change the Debug Flag if you have issues with AT commands
29
- debugflag = False
28
+ # Change the Debug Flag if you have issues with AT commands
29
+ debugflag = False
30
30
31
31
if board .board_id == "challenger_rp2040_wifi" :
32
32
RX = board .ESP_RX
Original file line number Diff line number Diff line change 1
-
2
1
# SPDX-FileCopyrightText: 2021 ladyada for Adafruit Industries
3
2
# SPDX-License-Identifier: MIT
4
3
17
16
print ("WiFi secrets are kept in secrets.py, please add them there!" )
18
17
raise
19
18
# Debug Level
20
- # Change the Debug Flag if you have issues with AT commands
21
- debugflag = False
19
+ # Change the Debug Flag if you have issues with AT commands
20
+ debugflag = False
22
21
23
22
if board .board_id == "challenger_rp2040_wifi" :
24
23
RX = board .ESP_RX
52
51
while True :
53
52
try :
54
53
if first_pass :
55
- # Some ESP do not return OK on AP Scan.
56
- # See https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/issues/48
57
- # Comment out the next 3 lines if you get a No OK response to AT+CWLAP
54
+ # Some ESP do not return OK on AP Scan.
55
+ # See https://github.com/adafruit/Adafruit_CircuitPython_ESP_ATcontrol/issues/48
56
+ # Comment out the next 3 lines if you get a No OK response to AT+CWLAP
58
57
print ("Scanning for AP's" )
59
58
for ap in esp .scan_APs ():
60
59
print (ap )
You can’t perform that action at this time.
0 commit comments