i want to fire an event every time the device orientation (calculated by x and y axes) crosses a special value. So every time the device moves down and crosses 90° or it moves up and crosses 90° i want to play a sound.
Currently i'm observing the accelerometers x and y axes:
- (void)accelerometer:(UIAccelerometer *)accelerometer
didAccelerate:(UIAcceleration *)acceleration {
// Try to normalize direction vector in order to
// get the actual orientation regardless the speed
double norm = (1/sqrt((acceleration.x*acceleration.x)+(acceleration.y*acceleration.y)));
double accX = fabs(acceleration.x * norm);
double accY = fabs(acceleration.y * norm);
double angle = -atan2(accY, accX) - M_PI/2.0;
double angleInDeg = fabs(angle * 180.0f/M_PI);
int threshold = 10;
if(angleInDeg > 90+threshold && lt90) {
lt90 = NO;
// do something (play effect)
} else if(angleInDeg < 90-threshold && !lt90) {
lt90 = YES;
// do something (play effect)
}
}
This works as far as the device is shaken slow. But if i shake it approx. 6 times a second the angleInDeg gets horrible wrong. Using the built-in shake-detection doesn't work this time because i need to get every shake, slow or fast ones.
Thanks for help.