I can't seem to manage to make my compass application function anywhere near as smoothly as Apple's, and I haven't seen any compass applications from independent developers that don't lag and sometimes jump erratically like mine does.

Is there any open source that demonstrates how to achieve such fluidity? Accuracy isn't quite so important, but smooth animation is.

link|improve this question

71% accept rate
Apple has lots of sample code about animation. – dasdom Nov 2 '11 at 8:23
I know. Thanks for your comment, but you're pointing me in a very general direction. Do you have any specific tutorials or code samples in mind? I'd love to see them. – JezenThomas Nov 2 '11 at 8:49
feedback

1 Answer

up vote 1 down vote accepted

More general direction advice:

  • Easy: Apply a low pass filter to discard erratic readings.
  • Tricky: The compass updates slower than the gyroscope yaw, so you can measure the drift between compass updates to improve the response. Sample code.
  • Trickier: The proper way to fuse the gyroscope and the compass would be using a Kalman filter, but it isn't trivial. There is a talk about it at http://talkminer.com/viewtalk.jsp?videoid=C7JQ7Rpwn2k
link|improve this answer
That's really good advice. Thanks very much. – JezenThomas Nov 2 '11 at 12:15
feedback

Your Answer

 
or
required, but never shown

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