gpt4 book ai didi

c# - Microsoft Band 2 支持的报告间隔

转载 作者:行者123 更新时间:2023-11-30 23:30:34 25 4
gpt4 key购买 nike

波段 1 允许设置传感器读数的报告间隔。

现在band 2,貌似只有一个支持读取间隔,而且不能更改。有谁知道:

  1. Microsoft Band 上每个传感器允许的支持报告间隔?
  2. 如何更改报告间隔?

到目前为止,作为示例,我有以下代码:

this.bandClient.SensorManager.Altimeter.ReadingChanged += this.OnAltimeterReadingChanged;

//bandClient.SensorManager.Altimeter.ReportingInterval = TimeSpan.FromMilliseconds(1000);

//get a list of available reporting intervals
IEnumerable<TimeSpan> supportedAltimeterReportingIntervals =bandClient.SensorManager.Altimeter.SupportedReportingIntervals;

foreach (var ri in supportedAltimeterReportingIntervals)
{
Debug.WriteLine("Altimeter Reporting Interval is {0}", ri.ToString());
}

这一行:

//bandClient.SensorManager.Altimeter.ReportingInterval = TimeSpan.FromMilliseconds(1000);

返回:

Exception thrown: 'System.ArgumentOutOfRangeException' in Microsoft.Band.ni.DLL

The enumeration of supported reporting intervals, returns: Altimeter Reporting Interval is 00:00:00.5000000 (Only 1 interval)

最佳答案

Band 上的每个传感器都有自己的一组受支持的报告间隔(有时只有一个受支持的间隔)。 Band 1 和 2 之间的报告间隔设置方式都没有改变。(Band 2 添加了新的传感器,例如高度计,这在 Band 1 中是不存在的。)

关于问题 #1,您可以在 documentation 中找到有关每个传感器的信息。在 Microsoft Health development site . (奇怪的是,他们将高度计列为 1Hz,但 SDK 显然返回 2Hz 作为报告间隔。)

关于问题 #2,您使用 IBandSensor.ReportingInterval = <TimeSpan> 设置报告间隔TimeSpan在哪里是 IBandSensor.SupportedReportingIntervals 中的值之一.

在您的示例代码中,您试图将高度计传感器设置为以不受支持的间隔进行报告,这就是您看到异常的原因。

关于c# - Microsoft Band 2 支持的报告间隔,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34932787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com