Open andrenoel84 opened 1 year ago
possibly related https://github.com/TimoKinnunen/MauiXAMLBluetoothLE/issues/7
just rip HeartRateUuids.HeartRateServiceUuids -then you may see more devices.
IReadOnlyList<IDevice> systemDevices = Adapter.GetSystemConnectedOrPairedDevices(HeartRateUuids.HeartRateServiceUuids);
->
IReadOnlyList<IDevice> systemDevices = Adapter.GetSystemConnectedOrPairedDevices();
await Adapter.StartScanningForDevicesAsync(HeartRateUuids.HeartRateServiceUuids);
->
await Adapter.StartScanningForDevicesAsync();
That is right!
Hi, I wanted to thank you for your code. It allows me to test Plugin.BLE before integration in a custom project. I succeed running the app on android but I have an issue on Windows. The app starts well and when I start the ble scan it returns "Unable to find nearby Bluetooth LE devices. Try again.".
Did you tried it on Windows ?
I'll search if permissions are set correctly
Thank you for your support Regards