Gyrometer 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
表示一个陀螺测试仪传感器,该传感器提供相对于 x、y 和 z 轴的角速度值。
public ref class Gyrometer sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
/// [Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
class Gyrometer final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
[Windows.Foundation.Metadata.Threading(Windows.Foundation.Metadata.ThreadingModel.Both)]
public sealed class Gyrometer
Public NotInheritable Class Gyrometer
- 继承
- 属性
Windows 要求
设备系列 |
Windows 10 (在 10.0.10240.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)
|
示例
有关实现的示例,请参阅陀螺测试仪示例。
注解
传感器数据相对于设备的固定传感器坐标系提供,与显示方向无关。 对于依赖传感器数据进行输入控制或操作屏幕上元素的应用程序,开发人员必须考虑当前显示方向并适当地补偿数据。 有关传感器坐标系的详细信息,请参阅 传感器数据和显示方向。
以下示例演示使用 XAML 和 C# 生成的 UWP 应用如何使用 GetDefault 方法建立与陀螺仪的连接。 如果未找到集成陀螺测试仪,该方法将返回 null 值。
_gyrometer = Gyrometer.GetDefault();
以下示例演示使用 XAML 生成的 UWP 应用如何注册 ReadingChanged 事件处理程序。
private void ScenarioEnable(object sender, RoutedEventArgs e)
{
if (_gyrometer != null)
{
// Establish the report interval
_gyrometer.ReportInterval = _desiredReportInterval;
Window.Current.VisibilityChanged += new WindowVisibilityChangedEventHandler(VisibilityChanged);
_gyrometer.ReadingChanged += new TypedEventHandler<Gyrometer, GyrometerReadingChangedEventArgs>(ReadingChanged);
ScenarioEnableButton.IsEnabled = false;
ScenarioDisableButton.IsEnabled = true;
}
else
{
rootPage.NotifyUser("No gyrometer found", NotifyType.StatusMessage);
}
}
以下示例演示 ReadingChanged 事件处理程序。
async private void ReadingChanged(object sender, GyrometerReadingChangedEventArgs e)
{
await Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
{
GyrometerReading reading = e.Reading;
ScenarioOutput_X.Text = String.Format("{0,5:0.00}", reading.AngularVelocityX);
ScenarioOutput_Y.Text = String.Format("{0,5:0.00}", reading.AngularVelocityY);
ScenarioOutput_Z.Text = String.Format("{0,5:0.00}", reading.AngularVelocityZ);
});
}
版本历史记录
Windows 版本 | SDK 版本 | 增值 |
---|---|---|
1709 | 16299 | FromIdAsync |
1709 | 16299 | GetDeviceSelector |
1709 | 16299 | MaxBatchSize |
1709 | 16299 | ReportLatency |
2004 | 19041 | ReportThreshold |
属性
DeviceId |
获取设备标识符。 |
MaxBatchSize |
获取传感器可以批处理的最大事件数。 |
MinimumReportInterval |
获取陀螺仪支持的最小报告间隔。 |
ReadingTransform |
获取或设置需要应用于传感器数据的转换。 要应用的转换与用于对齐传感器数据的显示方向相关联。 |
ReportInterval |
获取或设置陀螺测试仪的当前报告间隔。 |
ReportLatency |
获取或设置传感器信息批次之间的延迟。 |
ReportThreshold |
方法
FromIdAsync(String) |
从其标识符异步获取传感器。 |
GetCurrentReading() |
获取当前陀螺测试仪读数。 |
GetDefault() |
返回默认陀螺测试仪。 |
GetDeviceSelector() |
获取设备选择器。 |
事件
ReadingChanged |
每次陀螺测试仪报告当前传感器读数时发生。 |