Are there any good examples for how to use the accelerometers in iPhone OS? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T05:51:45Z http://stackoverflow.com/feeds/question/825923 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/825923/are-there-any-good-examples-for-how-to-use-the-accelerometers-in-iphone-os 1 Are there any good examples for how to use the accelerometers in iPhone OS? Thanks 2009-05-05T17:06:23Z 2009-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#825974 3 Answer by Daniel Dickison for Are there any good examples for how to use the accelerometers in iPhone OS? Daniel Dickison 2009-05-05T17:16:06Z 2009-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 &lt;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#826421 1 Answer by Tom Harrington for Are there any good examples for how to use the accelerometers in iPhone OS? Tom Harrington 2009-05-05T19:00:52Z 2009-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>