Search found 2 matches

by kamkalian
Fri Dec 21, 2018 9:58 am
Forum: ESP32 boards
Topic: unknown status param 'rssi'
Replies: 1
Views: 1818

unknown status param 'rssi'

Hi, i changed from ESP8266 to ESP32. And now on: wlan = network.WLAN(network.STA_IF) wlan.active(True) wlan.connect('Freifunk') while not wlan.isconnected(): time.sleep(0.5) rssi = wlan.status('rssi') I get the error: "unknown status param" Can someone help me? I need a live signal strength value. B...
by kamkalian
Mon Oct 29, 2018 8:31 pm
Forum: ESP8266 boards
Topic: How do I list the RSSI (strength) of the Wi-Fi SSID I'm connected to?
Replies: 11
Views: 17168

Re: How do I list the RSSI (strength) of the Wi-Fi SSID I'm connected to?

if you are connected with:
wlan = network.WLAN(network.STA_IF)
wlan.active(True)
wlan.connect("your_ssid")

you can get the rssi from:
wlan.status('rssi')