Are there any good examples for how to use the accelerometers in iPhone OS? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T05:51:45Zhttp://stackoverflow.com/feeds/question/825923http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/825923/are-there-any-good-examples-for-how-to-use-the-accelerometers-in-iphone-os1Are there any good examples for how to use the accelerometers in iPhone OS?Thanks2009-05-05T17:06:23Z2009-11-19T10:34:28Z
<p>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.</p>
http://stackoverflow.com/questions/825923/are-there-any-good-examples-for-how-to-use-the-accelerometers-in-iphone-os/825974#8259743Answer by Daniel Dickison for Are there any good examples for how to use the accelerometers in iPhone OS?Daniel Dickison2009-05-05T17:16:06Z2009-05-05T17:16:06Z<p>(It's too bad you can't file a bug with planet Earth to fix its Gravity issue!)</p>
<p>There are several examples listed under "Related sample code" in the <a href="http://developer.apple.com/iphone/library/documentation/UIKit/Reference/UIAcceleration%5FClass/Reference/UIAcceleration.html" rel="nofollow">UIAcceleration Class Reference</a>.</p>
<p>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 <code>sqrt(x*x+y*y+z*z)</code> should stay around 1.</p>
http://stackoverflow.com/questions/825923/are-there-any-good-examples-for-how-to-use-the-accelerometers-in-iphone-os/826421#8264211Answer by Tom Harrington for Are there any good examples for how to use the accelerometers in iPhone OS?Tom Harrington2009-05-05T19:00:52Z2009-05-05T19:00:52Z<p>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.</p>