When developing a compass in android, it is possible to check for reliability of sensors by inspecting the accuracy parameter passed in

onAccuracyChanged(Sensor sensor, int accuracy)

This parameter can only be 0,1,2, or three for

SENSOR_STATUS_UNRELIABLE, SENSOR_STATUS_ACCURACY_LOW, SENSOR_STATUS_ACCURACY_MEDIUM, and SENSOR_STATUS_ACCURACY_HIGH

respectively.

However, I can see many applications on the android market which display a progress-bar gauge that seems to reflect an accuracy that is divisible by more than just 4 values, in other words, these applications seems to indicate an accuracy range that is much more precise than the 4 constants.

How would someone do this?

link|improve this question

feedback

1 Answer

There are probably using time averaging to return a better or worse result since there are the constants for SENSOR_DELAY_* when you register your sensor listener. If you add another layer of time averaging on top of what the system gives you, you should be able to improve accuracy at the cost of performance.

link|improve this answer
Thanks @Morrison Chang, but I am starting to think that they inspect the values in the array passed by onAccuracyChanged(Sensor sensor, int accuracy) to determine if the values are two high for the 'normal' magnetic field on earth. I am not sure what determines a high value though. – Gallal Jul 2 '11 at 14:37
feedback

Your Answer

 
or
required, but never shown

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