I can use this method of the Core Motion framework:

- (void)startAccelerometerUpdatesToQueue:(NSOperationQueue *)queue withHandler:(CMAccelerometerHandler)handler

as an alternative to the

- (void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration

UIAccelerationDelegate method of UIKit. There, I have to specify the frequency of updates. I want to get acceleration data as fast and accurate as possible.

Is Core Motion my friend here? What's the frequency of readings I can expect from that method of Core Motion? The documentation doesn't talk about it.

link|improve this question

It's all about mad science. We need as many readings per second as possible. – Proud Member Mar 31 '11 at 9:42
[accelerometer:didAccelerate:] is deprecated as of iOS 5.0 (cf. UIAccelerometer.h) – tea May 1 at 4:27
feedback

1 Answer

up vote 3 down vote accepted

Edit! Now that this answer is OVERE A YEAR OLD, certainly it is only of historic value. At this stage, I guess, everyone should only be using CoreMotion and that's that. Hope this historic answer it helps an history students!


Bug, FWIW my impression is that: CMAttitude and CMDeviceMotion give you the benefit of both the accel'r and the gyro (if the gyro is present).

Whereas CMAccelerometerData is only the accel'r. (Exactly like in the old days before Core Motion.)

My impression is that the two specific advantages of CoreMotion are:

(One) the astounding, mindboggling convenience of having Quaternions and attitude given to you on a silver platter

(Two) apparently, both gyro and accel'r are used on machines with a gyro, with no extra work from you ... a spectacular advantage.

I believe there is no actual technical difference in the quality of usage of the accelerometer per se.

Thus: if (for some reason) you want only the accel'r, and you can do the math (if relevant to your task at hand), you could use the old-school accel'r delegate.

IMO, the short answer is...

...none of us will never again

use the old-school accelerometer delegate!!!

That's my take, Bug!

link|improve this answer
1  
Interesting. Thanks for your help. – Proud Member Mar 31 '11 at 9:48
Yes. Thanks for that. – tea May 1 at 4:28
feedback

Your Answer

 
or
required, but never shown

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