2017-04-19 8 views
0

MicroPythonを使用してNodeMCUデバイスのWiFiに接続されたWLANデバイスのRSSI値を取得する方法は?実は私は、次のコードを試してみましたが、私はエラーを取得しています:NodeMCUでMicroPythonを使用するRSSI値ESP8266

>>> sta_if.ifconfig()   
('192.168.1.103', '255.255.255.0', '192.168.1.1', '192.168.1.1') 

>>> sta_if.rssi()   
Traceback (most recent call last):   
    File "<stdin>", line 1, in <module>   
AttributeError: 'WLAN' object has no attribute 'rssi' 

私はネットワークのRSSI値を取得するために何をすべきか分かりません。 WLAN class documentationから

答えて

1

wlan.scan()

Scan for the available wireless networks.

Scanning is only possible on STA interface. Returns list of tuples with the information about WiFi access points:

(ssid, bssid, channel, RSSI, authmode, hidden)

関連する問題