I have a bluetooth low energy (BTLE) device, which I need to connect to my PC. To do so, I use the windows API reference in a desktop WPF app. The bluetooth device is rather simple: 1 service, 2 characteristics (one read/notify, one to write to). To make below code [...] read more
I got an issue with reconnection to my BLE device. Senario that works - BLE Device is not paired - Pi boots and start my App, find's the BLE device, pair and connect, receiving data - Boot Pi and start my App, it will not pair as its already paired, [...] read more
I'm currently working on an application, which would send a message to a Bluetooth LE device. Everything works fine on the first start up, but on the second start up, I get an exception. Application Code getDevices() function public async Task<List<string>> getDevices() { Debug.WriteLine("C"); foreach (DeviceInformation di in await DeviceInformation.FindAllAsync(GattDeviceService.GetDeviceSelectorFromUuid(new [...] read more
I'm using the Bluetooth Low Energy (BLE) API introduced by Microsoft with Windows 8, the BluetoothGATTxxx functions. My code is working fine on Windows 8.1, but I have observed a difference in the behavior of BluetoothGATTSetDescriptorValue between 8.1 and Windows 10. The scenario is the following: 1. Pair the device [...] read more
I am using the Bluetooth Low Energy API on Windows 8.1 and Windows 10 to connect to a custom Bluetooth LE device. I have to pair the device with Windows before connecting to it through my code, and it all works on Windows 8.1, and partially works on Windows 10, [...] read more
I'm running windows 10 IoT (v14342) on raspberry pi 3 and trying to communicate with Adafruit M0 BLE feather module. After pairing, I'm able to write and receive messages from it and if feather module temporarily loses power, it seems like windows 10 IoT is not able to write anything [...] read more
I am unable to reconnect to my Bluetooth Low Energy Only Device using the Windows 10 API for Bluetooth without repairing each time (Windows 8.1 works). I am able to pair to the custom device through code, and am able to connect and subscribe for notifications but when I disconnect [...] read more