What's the best approach to change view properties due to accelerometer-value-changes? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:21:53Z http://stackoverflow.com/feeds/question/825821 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha 0 What's the best approach to change view properties due to accelerometer-value-changes? Thanks 2009-05-05T16:42:56Z 2009-05-05T22:09:12Z <p>I want to do this: If the device moves (accelerometer values change), then I want to adjust some values in my view according to that movement.</p> <p>Would I invoke a method every time an accelerometer value changes? I believe that would be a bad idea, since they might refresh too often.</p> http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825842#825842 1 Answer by McWafflestix for What's the best approach to change view properties due to accelerometer-value-changes? McWafflestix 2009-05-05T16:46:52Z 2009-05-05T16:46:52Z <p>If you're worried about too frequent changes, just use an accumulator; use a little bit of code that detects the changes, and checks the system time; only if enough system time has passed, do you fire the (potentially accumulated) change method.</p> http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825845#825845 1 Answer by Chathuranga Chandrasekara for What's the best approach to change view properties due to accelerometer-value-changes? Chathuranga Chandrasekara 2009-05-05T16:47:18Z 2009-05-05T16:47:18Z <p>I think so... If not you have only one option. Getting a reading periodically. Again shorter the period, higher the accuracy. So it might be more efficient if you can trigger an event when a change in value is detected.</p> http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/825867#825867 1 Answer by Antonio Haley for What's the best approach to change view properties due to accelerometer-value-changes? Antonio Haley 2009-05-05T16:51:47Z 2009-05-05T16:51:47Z <p>If you are concerned about noise coming from the accelerometer you can smooth out the inputs by implementing a moving average. This will allow you to take samples however frequently you want without worrying about false starts coming from the accelerometer. </p> <p><a href="http://en.wikipedia.org/wiki/Moving_average" rel="nofollow">http://en.wikipedia.org/wiki/Moving_average</a></p> http://stackoverflow.com/questions/825821/whats-the-best-approach-to-change-view-properties-due-to-accelerometer-value-cha/827132#827132 1 Answer by Benny Wong for What's the best approach to change view properties due to accelerometer-value-changes? Benny Wong 2009-05-05T22:09:12Z 2009-05-05T22:09:12Z <p>When you implement the <code>accelerometer:didAccelerate:</code> method in your <code>UIAccelerometerDelegate</code>, just have an <code>if</code> statement, checking if the time between the last time you got an update if long enough.</p> <p>In your class that implements <code>UIAccelerometerDelegate</code>, you can have a property that holds something like <code>lastTimeUpdated</code> and then update it whenever you change your view</p>