Skip to content

Commit 84ab146

Browse files
authored
Merge pull request #63 from id-studiolab/test
fix typos
2 parents b3621c9 + 2710a7c commit 84ab146

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

docs/tutorials/connecting-to-the-internet/part-1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ while True:
8585
print("\nScanning for available networks...")
8686
# Add SSID of each Access Point (ap) in range to network_list
8787
network_list = [str(ap["ssid"], "utf-8") for ap in esp.scan_networks()]
88-
print(network_list)d
88+
print(network_list)
8989

9090
print("\nMAC Address:")
9191
# Format the MAC address (reverse byte order and format hex values)

docs/tutorials/connecting-to-the-internet/part-3.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ if os.getenv("CIRCUITPY_WIFI_SSID") not in network_list:
128128
print(os.getenv("CIRCUITPY_WIFI_SSID"), "not found.\nAvailable networks:", network_list)
129129
raise SystemExit(0)
130130

131-
print(settings["ssid"], "found. Connecting...")
132131
while not esp.is_connected:
133132
try:
134133
esp.connect_AP(os.getenv("CIRCUITPY_WIFI_SSID"), os.getenv("CIRCUITPY_WIFI_PASSWORD"))

0 commit comments

Comments
 (0)