Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting a list of already connected bluetooth devices on Windows 10

This question might be stupid, and maybe the first accepted answer will be one that explains why this is not an intended use-case.

Is it possible to get a list of BT devices, that are already connect to the machine?

The machine is a Win10 box and using "pure" C#/.Net would be nice, although there is also 32feet. The BT device is not BTLE (low energy).

The device is already connected via the normal Windows routines and the goal would be to get some kind of status information about the device and the connection status.

Addendum: I searched a lot and most results talk about how to pair and/or connect and the different capabilities of Win7, 8 and 10 confused me quite a lot. That's why I don't want to include any code, this time :-)

I saw Getting a list of bluetooth devices in a C# .NET framework and read through the answer and the comments. It is explicitly not about UWP but a CLI and furthermore, it doesn't seem to work. Even with 32feet, as the suggested API call to DiscoverDevicesInRange looks for devices that are in range and are in ‘discoverable mode’. Not connected yet. In the question itself it states that it should clearly work with Windows.Devices.Bluetooth, but I couldn't find anything that actually works.

like image 847
Xan-Kun Clark-Davis Avatar asked Jul 25 '18 19:07

Xan-Kun Clark-Davis


People also ask

How do I find previously connected Bluetooth devices?

Swipe down from the top of the screen. Touch and hold Bluetooth . If your accessory is listed under "Available media devices," next to your device's name, tap Settings . If no accessories are listed under "Previously connected devices," tap See all.

How do I find paired devices on Windows 10?

On your PC, select Start > Settings > Devices > Bluetooth & other devices > Add Bluetooth or other device > Bluetooth. Choose the device and follow additional instructions if they appear, then select Done.

How do I re add a device I removed from Bluetooth on Windows 10?

Press Windows logo key + X and select Device Manager. Click on View and select Show hidden devices. Expand Bluetooth. Right click on the device and select Update Drivers.

Where is my Bluetooth list?

On an Android phone, you'll probably find Bluetooth in the Quick Settings tray when you swipe down twice from the top of the screen. Long press the icon to jump straight to Bluetooth settings where you'll see a list of paired devices.


Video Answer


1 Answers

You can find the Paired or Connected Bluetooth device by using the DeviceInformation.FindAllAsync(String) method, you can specify the string to be BluetoothDevice.GetDeviceSelectorFromPairingState(true) or BluetoothDevice.GetDeviceSelectorFromConnectionStatus(BluetoothConnectionStatus.Connected) as the following code.

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

For more information, you can see the topic Enumerate devices and the official DeviceEnumerationAndPairing sample.

like image 106
Breeze Liu - MSFT Avatar answered Sep 22 '22 14:09

Breeze Liu - MSFT