I need to search and connect to a Bluetooth device using a Windows store app. I am using XAML/C# and Windows 8.1. The device supports RFCOMM.
What I have done so far:
If I pair the device to my system and then search for the device using
var devicesInfoCollection = await DeviceInformation.FindAllAsync();
I get the Bluetooth Device, however is there a way to find the device when its still not paired.
Thanks