蓝牙设备未列出

时间:2016-11-21 19:35:35

标签: c# bluetooth uwp

我连接的设备是我的带有蓝牙HC-05的蓝牙2.0模块的arduino板。它在我的Windows 10蓝牙管理器中显示,该设备已准备好配对(我甚至可以配对它没有问题),但是我的UWP应用程序似乎找不到它:

Device is ready to be paired, but no results in debug

变量"设备"只是空。知道我做错了什么吗?

1 个答案:

答案 0 :(得分:2)

RfcommDeviceService.GetDeviceSelector功能可帮助enumerated paired device

因此,首先,您需要在Windows 10蓝牙管理器中配对设备,或者您可以添加代码行来配对它。然后使用FindAllAsync()来获取它。

关于如何在代码中配对设备,您可以参考Device enumeration and pairing sample