vote up 1 vote down star

I think that there are some issues with the earth Gravity, so I wonder if there are any examples where the accelerometers work by subtracting these.

flag

58% accept rate
I very seriously doubt that the sensitivity of the iPhone accelerometers are going to be high enough to detect "issue" with earth gravity (for any range of "issues" that normal humans are likely to encounter). – McWafflestix May 5 at 17:23
The "issue" is that gravity is an acceleration, and so the accelerometer detects it. If the phone is steady, the accelerometer shows 1G acceleration downward. That's great for knowing which way is up (down) but it's not something you want to factor into something like shake detection. – Tom Harrington May 5 at 19:02
If you make the assumption that the iPhone doesn't rotate significantly while being shaken, then gravity shouldn't matter, because you're looking for change in forces, and gravity is an unchanging force. – unknown (google) May 5 at 19:06
It's probably not a good idea to assume much about how people will hold their phones, especially when it's so easy to avoid that assumption. – Tom Harrington May 5 at 19:38

2 Answers

vote up 3 vote down check

(It's too bad you can't file a bug with planet Earth to fix its Gravity issue!)

There are several examples listed under "Related sample code" in the UIAcceleration Class Reference.

As that doc states, a value of 1.0 represents roughly +1g. So if you point the iPhone straight up in portrait orientation, you should see roughly <0, -1, 0>. As you rotate the phone around, the magnitude of the acceleration vector sqrt(x*x+y*y+z*z) should stay around 1.

link|flag
vote up 1 vote down

Apple's AccelerometerGraph demo includes sample code that implements a high-pass filter-- effectively filtering out the effect of gravity. It's pretty simple to just grab it and modify to suit your needs.

link|flag
Thnaks for the hint! – Thanks May 5 at 20:56

Your Answer

Get an OpenID
or

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