使用带Monotouch的陀螺仪?

时间:2011-07-20 03:09:55

标签: iphone xamarin.ios gyroscope

有人可以向我提供一个如何将陀螺仪与Monotouch配合使用的示例吗?我无法弄清楚如何响应陀螺仪更新事件。

谢谢!

1 个答案:

答案 0 :(得分:3)

这是一个简单的例子:

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);
}

CMGyroData实例的RotationRate属性的三个值中的每一个都是每个轴上每秒的旋转角度量,以弧度为单位。