This proram is to detect values of the gyroscope (Roll, Pitch and Yaw).
Please i want to know what is the max and Min values of Roll, Pitch and Yaw. (Values of Gyroscope)
Initialising :
[[UIAccelerometer sharedAccelerometer] setUpdateInterval:0.2f];
[[UIAccelerometer sharedAccelerometer] setDelegate:self];
motionManager = [[CMMotionManager alloc] init];
motionManager.accelerometerUpdateInterval = 0.01; // 100Hz
motionManager.deviceMotionUpdateInterval = 0.01; // 100Hz
[motionManager startDeviceMotionUpdates];
motionManager.deviceMotion.attitude.roll // Max and Min Value ?
motionManager.deviceMotion.attitude.yaw // Max and Min Value ?
motionManager.deviceMotion.attitude.Pitch // Max and Min Value ?
And how to pass to the Values -> Degree ?
Thanks