Tagged Questions

4
votes
1answer
3k views

Android - SensorManager strange behaviour of getOrientation

I need to retrieve the orientation of my phone. At the moment i wrote this : public void onSensorChanged(SensorEvent event) { switch (event.sensor.getType()){ case Sensor.TYPE_MAGNETIC_FIELD: ...
3
votes
3answers
3k views

How to determine absolute orientation

I have a xyz accelerometer and magnetometer. Now I want to determine the orientation of the device using both. The problem I see is that depending on the device orientation, I'd need to use the ...
2
votes
1answer
160 views

How to find MagneticField Strength using magneto meter in android

I want to get Magnetic Field Strength from Magneto Meter of Android Device. Using the magneto meter of android device I can get the data of magnetic field in the form of x,y & z axis in Micro ...
1
vote
2answers
431 views

Basic question about sensor usage

Suppose I have a cellphone with accelerometer and magnetometer, and want to determine its absolute (wrt North/East/South/West) 3d position. Imagine the phone is laid vertically, with the screen ...
0
votes
0answers
41 views

Sensor fusion with compass and gyroscope: between 0 and 360 degrees

I'm developing a small indoor navigation app in which I use the gyro and the compass for the device orientation. I use the gyro to smooth the compass data. My sensor fusion looks like the following. ...
0
votes
0answers
56 views

Has anyone worked with AtAVRSBin1 (specially its e-compass)? How to fuse the mag data in my algo?

I have AtAVRSBin1 having magnetometer(AK8975), Gyroscope and an Accelerometer onboard. I am using following as my reference: Development of a Low-Cost Attitude and Heading Reference System Using a ...
0
votes
1answer
149 views

How to obtain an accuracy that is more precise than the four provided accuracy constants in Android when listening to sensors?

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 ...
0
votes
1answer
493 views

Magnetometer causing lag?

I'm developing an application which will use magnetometer data for interaction, by moving a magnet towards and away from the phone. This works fine (enough), but it seems like when I move the magnet ...