ConnectionMgr.GetWiFiSignal()
Description
This callback function is called to collect cellular and WIFI signal strength in dBm.
Signal strength in the Range of 0 to 4 (Inclusive) where 0 is no reception and 4 is maximum strength. Do notice that if there is no actual signal then the value is -1.
Return Type
int
Example
The example below will collect cellular and WIFI signal strength:
var wifiSignal = ConnectionMgr.GetWifiSignal();
if(wifiSignal >= 0){
Prompt("WifiSignal is " + wifiSignal);
}
Comments
Please sign in to leave a comment.