Get RSSI on connected WiFi
-
Hi folks
How can I get the RSSI value of the connected WiFi?
There is no no RSSI() function on wifiCfg in micropython (uiflow)
Thanks for help ;-)
Best regards
Thomas -
refer below code . use this function
import wifiCfg wifiCfg.wlan_sta.scan()
-
@m5stack said in Get RSSI on connected WiFi:
wifiCfg.wlan_sta.scan()
ok, thats cool.
Do you know, how I can get the current connected SSID if I use auto connect? -
@m5stickfreakler in UIFlow we have not provided this API yet
-
@m5stack said in Get RSSI on connected WiFi:
@m5stickfreakler in UIFlow we have not provided this API yet
Thanks for your info. So unfortunately I can't get the RSSI of the current connected WiFi SSID snif
-
@m5stack said in Get RSSI on connected WiFi:
wifiCfg
Refer to the documentation, you can get RSSI value of current connected WiFi by calling:
wifiCfg.wlan_sta.status('rssi')
It could be attached to the variable and / or to the function: