gpt4 book ai didi

c# - 读取值自动更新 UWA/UWP

转载 作者:太空宇宙 更新时间:2023-11-03 12:14:20 25 4
gpt4 key购买 nike

private async void CharacteristicReadButton_Click()
{
// BT_Code: Read the actual value from the device by using Uncached.
GattReadResult result = await selectedCharacteristic.ReadValueAsync(BluetoothCacheMode.Uncached);
if (result.Status == GattCommunicationStatus.Success)
{
string formattedResult = FormatValueByPresentation(result.Value, presentationFormat);
rootPage.NotifyUser($"Read result: {formattedResult}", NotifyType.StatusMessage);
}
else
{
rootPage.NotifyUser($"Read failed: {result.Status}", NotifyType.ErrorMessage);
}
}

我遇到了读取值更改的问题。我已经用我的 rfduino 设置了 mpu5060,所以每当我的 rfduino 移动时,它都会在我的 Arduino 串行监视器上显示角度。

对于我的 C#,我可以在按下“读取”按钮时读取值。但是如果我的值(角度)发生变化,它不会自动更新以通知用户。我必须再次手动单击“阅读”按钮才能更改。 如何让它自动更新?

最佳答案

您需要创建计时器线程来监视您的值的变化。

看到这个 Timer class

关于c# - 读取值自动更新 UWA/UWP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50501990/

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