2
votes
0answers
144 views

Power Usage of (virtual) Sensors Android

Looking through the capabilities of my Nexus 4 I noticed that Sensors seem to be reported multiple times. I haven't worked with sensors (or Smartphones in general) before, so I used some apps to get ...
0
votes
1answer
257 views

Meaningfull charts for Motion Sensors - Accelerometer, Gyroscope and Magnetometer

I am working on Motion sensor - Accelerometer , Gyroscope and Magnetometer.I am developing c-application which could read the data from these hardware .I am able to do this for their hardware board. ...
1
vote
1answer
281 views

getDefaultSensor(Sensor.TYPE_ACCELEROMETER).getMaximumRange()

If I call SensorManager mgr = (SensorManager) this.getSystemService(SENSOR_SERVICE); String text = "The maximum G Force that this device can detect is: " + ...
2
votes
3answers
702 views

How to log data from Android Motion Sensors at a fixed rate

I'm learning the Basics of Android programming. I have a simple android test application in which i log the accelerometer,magnetometer and the orientation data to an external file while also ...
1
vote
1answer
192 views

Measuring distance travelled with android using Sensor Event Listener

I want to measure distance traveled using android with its sensor. Could you give me an idea how to start this project? Or give me any tutorials that would help me do this.