initialize file, test wifi connection out with led to show if connected

This commit is contained in:
2024-01-24 15:23:11 -05:00
parent d1e99d1f8f
commit efba181492
3 changed files with 59 additions and 7 deletions

4
Scripts/network-scan.py Normal file
View File

@@ -0,0 +1,4 @@
import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
print(wlan.scan())