当前位置:  开发笔记 > 编程语言 > 正文

在Windows10 UWP中查找蓝牙Mac地址而不进行配对

如何解决《在Windows10UWP中查找蓝牙Mac地址而不进行配对》经验,为你挑选了0个好方法。

我正在尝试编写一个应用程序来读取Windows 10 IoT上的所有MAC地址.这些代码行返回所有配对设备,即使它们没有打开.

var selector = BluetoothDevice.GetDeviceSelector();
var devices = await DeviceInformation.FindAllAsync(selector);
listBox.Items.Add(devices.Count);
foreach (var device in devices)
{
    listBox.Items.Add(device.Id);
}

我也找到了这行代码

await DeviceInformation.FindAllAsync(RfcommDeviceService.GetDeviceSelector(RfcommServiceId.SerialPort));

这返回null.有没有办法扫描Windows 10通用应用程序中的所有MAC地址?

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有