0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

ESP32: MicroPython で SSID をスキャン

0
Posted at

次のページを参考にしました。
ESP32とMicroPythonでNETサービスの利用

プログラム

wifi_scan.py
import network
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
aplist = wlan.scan()
llx = len(aplist)
print(llx)
for it in range(llx):
    print(aplist[it][0].decode())

実行結果

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?