I am using the following code to calcualte wifi signals strength:

List<ScanResult> results = wifiDemo.wifi.getScanResults();

for(int i=0;i<results.size();i++)
{    
    int signallevel=WifiManager.calculateSignalLevel(result.level,10);    
}

But it is returning the same value for all the wifi acess points. Can anyone please tell me what I'm doing wrong?

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You should keep in mind that WifiManager.calculateSignalLevel(result.level, 10) will return only a number between 0-9. Therefore it is best used for some app which shows a wifi strength indicator (with a few different states like the one normal WiFi indicator in android). Which number is returned depends on the RSSI parameter. So even if the RSSI of two access points are slightly different, this method will yield the same result. If you need finer distinguished results, use either a number higher than 10 or the RSSI values themselves.

link|improve this answer
I am getting the same error even when I use a scale of 40. For 50 I am getting a divide by zero arithmetic exception – Sarath May 10 '11 at 2:50
@Sarath, this fn has a bug that has never been fixed and which causes the DBZ exeption, but even if you work around that it doesn't really work (returns values outside the range). – Tom May 16 at 20:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.