There are 2 ways to get the 3 rotation values (azimuth, pitch, roll).

One is registering a listener of a type TYPE_ORIENTATION. It's the easiest way and I get a correct range of values from every rotation as the documentation says: azimuth: [0, 359] pitch: [-180, 180] roll: [-90, 90]

The other one, the most precise and complex to understand the first time you see it. Android recommends it, so I want to use it, but I get different values.

azimuth: [-180, 180]. -180/180 is S, 0 i N, 90 E and -90 W.
pitch: [-90, 90]. 90 is 90, -90 is -90, 0 is 0 but -180/180 (lying with the screen downwards) is 0.
roll: [-180, 180].

I should get the same values but with decimals, right?

I have the following code:

aValues = new float[3];
mValues = new float[3];

sensorListener = new SensorEventListener (){
    public void onSensorChanged (SensorEvent event){
        switch (event.sensor.getType ()){
            case Sensor.TYPE_ACCELEROMETER:
                aValues = event.values.clone ();
                break;
            case Sensor.TYPE_MAGNETIC_FIELD:
                mValues = event.values.clone ();
                break;
        }

        float[] R = new float[16];
        float[] orientationValues = new float[3];

        SensorManager.getRotationMatrix (R, null, aValues, mValues);
        SensorManager.getOrientation (R, orientationValues);

        orientationValues[0] = (float)Math.toDegrees (orientationValues[0]);
        orientationValues[1] = (float)Math.toDegrees (orientationValues[1]);
        orientationValues[2] = (float)Math.toDegrees (orientationValues[2]);

        azimuthText.setText ("azimuth: " + orientationValues[0]);
        pitchText.setText ("pitch: " + orientationValues[1]);
        rollText.setText ("roll: " + orientationValues[2]);
    }

    public void onAccuracyChanged (Sensor sensor, int accuracy){}
};

Please help. It's very frustrating.

Do I have to treat with those values or I'm doing something wrong?

Thanks.

link|improve this question

78% accept rate
1  
I've been working on this myself for about 2 weeks now. Your code looks like it's supposed to (according to documentation that I've been able to find), but as you've noted it doesn't match the TYPE_ORIENTATION sensor results. It seemed to be a simple thing to check orientationValues[0] for a negative value and add to it. But that doesn't quite do it. You don't show the frequency of your sensor updates. I found that faster updates make for better results, even though the TYPE_ORIENTATION results appear to be rather stable. If you'd like to work together, contact davemac327@gmail.com – Dave MacLean Nov 14 '10 at 0:41
All sensors speed are GAME, but I don't think that the problem is related to the speed. It's weird because all blogs and forums (and the book I'm reading!) implement the sensors in the same way. – Gabriel Llamas Nov 14 '10 at 8:21
1  
Well, everybody says how to use accelerometer and magnetic field but no one says that the returned values ARE DIFFERENT from the TYPE_ORIENTATION, even the official documentation. Good job people. Waiting for an answer... – Gabriel Llamas Nov 14 '10 at 19:42
feedback

3 Answers

You are missing one critical computation in your calculations.
The remapCoordinateSystem call afer you do a getRotationMatrix.

Add that to your code and all will be fine.
You can read more about it here.

GoodLUCK!!

-CVS

link|improve this answer
feedback

I might be shooting in the dark here, but if I understand your question correctly, you are wondering why you get [-179..179] instead of [0..360]?

Note that -180 is the same as +180 and the same as 180 + N*360 where N is a whole number (integer).

In other words, if you want to get the same numbers as with orientation sensor you can do this:

// x = orientationValues[0];
// y = orientationValues[1];
// z = orientationValues[2];
x = (x + 360.0) % 360.0;
y = (y + 360.0) % 360.0;
z = (z + 360.0) % 360.0;

This will give you the values in the [0..360] range as you wanted.

link|improve this answer
I can't remember know how I solved the problem xD, but +1 for you! :P – Gabriel Llamas May 14 at 17:11
feedback

Have a look at my question here. It might be of use.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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