Can anybody provide me with an example on how to use the gyroscope with Monotouch? I can't figure out how to respond to gyro update events.

Thanks!

link|improve this question

75% accept rate
feedback

1 Answer

Here is a simple example:

using MonoTouch.CoreMotion;
//..

CMMotionManager motionManager;
private void StartGyro()
{
    motionManager = new CMMotionManager();
    motionManager.GyroUpdateInterval = 1/10;
    if (motionManager.GyroAvailable)
    {
        motionManager.StartGyroUpdates(NSOperationQueue.MainQueue, GyroData_Received);
    }
}

private void GyroData_Received(CMGyroData gyroData, NSError error)
{
    Console.WriteLine("rotation rate x: {0}, y: {1}, z: {2}", 
    gyroData.RotationRate.x, gyroData.RotationRate.y, gyroData.RotationRate.z);
}

Each of the three values of the RotationRate property of the CMGyroData instance is the amount of rotation angle per second on each axis, in radians.

link|improve this answer
Thanks for example! I knew it was something straight forward, but couldn't put the pieces together. – robertweis Jul 21 '11 at 0:26
feedback

Your Answer

 
or
required, but never shown

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