Explication de routine 14-WiFi-Shield->scan scanne le réseau
Tutoriel vidéo 12 - Transmission d'images sans fil WIFI : https://singtown.com/learn/50005/
Tutoriel vidéo 39 - Programmation WIFI pour le débogage à distance OpenMV : https://singtown.com/learn/50899/
# Scan Example
#
# 此示例显示如何使用WiFi扩展或者OpenMV RT自带的WIFI来扫描网络。
import time
import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
print("Scanning...")
while True:
scan_result = wlan.scan()
for ap in scan_result:
print(
"SSID: %s BSSID: %s Channel: %d RSSI: %d Auth: %d"
% (ap[0], ":".join(["%X" % i for i in ap[1]]), ap[2], ap[3], ap[4])
)
print()
time.sleep_ms(1000)
Explication officielle de la fonction du document chinois OpenMV de Singtown Technology :