代码之家  ›  专栏  ›  技术社区  ›  Xan-Kun Clark-Davis

获取Windows 10上已连接蓝牙设备的列表

  •  1
  • Xan-Kun Clark-Davis  · 技术社区  · 6 年前

    这个问题可能很愚蠢,也许第一个被接受的答案就是解释为什么这不是一个预期的用例。

    是否可以获取已经连接到机器的BT设备列表?

    这台机器是一个Win10盒子,使用“纯”C/.net会很好,尽管也有32英尺。 蓝牙设备是 btle(低能量)。

    设备已经通过正常的Windows例程连接,其目标是获取有关设备和连接状态的某种状态信息。

    附录:我搜索了很多,大部分的结果都是关于如何配对和/或连接,以及Win7、8和10的不同功能让我很困惑。这就是为什么我不想包含任何代码,这次是:—)

    我看见了 Getting a list of bluetooth devices in a C# .NET framework 并通读答案和评论。它显然不是关于uwp,而是一个cli,而且,它似乎不起作用。即使是32英尺,建议的API调用discoverdevicesinrange也会查找范围内且处于可发现模式的设备。尚未连接。在这个问题本身,它表明它应该清楚地与windows.devices.bluetooth一起工作,但我找不到任何实际工作的东西。

    1 回复  |  直到 6 年前
        1
  •  2
  •   Breeze Liu - MSFT    6 年前

    您可以使用 DeviceInformation.FindAllAsync(String) 方法,可以指定要 BluetoothDevice.GetDeviceSelectorFromPairingState(true) BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected) 作为以下代码。

    //Paired bluetooth devices
    DeviceInformationCollection PairedBluetoothDevices =
           await DeviceInformation.FindAllAsync(BluetoothDevice.GetDeviceSelectorFromPairingState(true));
    //Connected bluetooth devices
    DeviceInformationCollection ConnectedBluetoothDevices =
           await DeviceInformation.FindAllAsync(BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected));
    

    有关详细信息,请参见主题 Enumerate devices 还有官员 DeviceEnumerationAndPairing 样品。