ConnectionMgr.GetWiFiSignal()

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);

}  

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments

0 comments

Please sign in to leave a comment.