vote up 1 vote down star
1

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 sensors in different order.

Let me give an example. If I have the device facing me then changes in both the roll and pitch can be determined with the accelerometer. For yaw I use the magnetometer.

But if I put the device horizontally (ie. turn it 90ยบ, facing the ceiling) then any change in the up vector (now horizontal) isn't notice, as the accelerometer doesn't detect any change. This can now be detected with the magnetometer.

So the question is, how to determine when to use one or the other. Is this enough with both sensors or do I need something else?

Thanks

flag

20% accept rate

2 Answers

vote up 1 vote down

If I understand you correctly, you'll need something to detect pitch (tilting) and orientation according to the cardinal points (North, East, South and West).

The pitch can be read from the accelerometer.

The orientation according to the cardinal points can be read from a compass.

Combining the output from these two sensors correctly with the right math in your software will most likely give you the absolute orientation.

I think it's doable that way.

Good luck.

link|flag
vote up 0 vote down

I think the question "how to determine when to use one or the other" is misguided. You should always use both sensors for orientation. There are cases where one of them is useless. However, these are edge cases.

link|flag
Thanks. It looks I wasn't very clear with the question. I'm well aware I need to use both accelerator and magnetometer in all cases, the problem is that in some cases this doesn't seem to be enough. – Al Jul 27 at 0:20
Let me use again a similar example: suppose I have a cell phone vertically, with the screen facing me, the "up" vector pointing to the ceil. Whenever I tilt, the accelerometer allows me to get the "up" vector info. The problem is that if I tilt the device and put it horizontally (screen now facing ceil, and "up" vector pointing to the opposite of where I am), then the up vector doesn't get updated any more if I rotate the phone horizontally on the table. This is something that clearly is detected by the magnetometer now. So, the question is, when to know where to use acc or mag for each case? – Al Jul 27 at 0:20

Your Answer

Get an OpenID
or

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