My question is kinda an update to my last question: c# Bluetooth LE - write configuration error - ValueChanged never called The problem is, I connect my WPF c#-Application to my BLE device, but characteristic.ValueChanged is never called. Maybe I miss something with the configuration or need to send additionall [...] read more
I am attempting to write a C# app that uses the WinRT Bluetooth LE APIs (the Windows.Devices.Bluetooth namespace). The app is a Windows Classic Desktop application (WPF, not UWP). When running a version of Windows 10 prior to the Creators Update, these APIs function as expected. However, when running the [...] read more
Apologies for asking a time dependant question, but does anyone know when Microsoft are going to sort out there drivers for the Raspberry Pi 3's on-board Bluetooth chip? Currently the console Device Settings just display the following exception error code relating to a fault with the OS files: > The [...] read more
So I try to connect my c# WPF program to a BLE device and this is the code to connect to the device: private async Task ConnectToWatcher(DeviceInformation deviceInfo) { try { // get the device BluetoothLEDevice device = await BluetoothLEDevice.FromIdAsync(deviceInfo.Id); // get the GATT service Thread.Sleep(150); var gattServicesResult = await [...] read more
I have a Raspberry Pi3 running Windows IoT version 10.0.14931.1000. The Raspberry Pi 3 onboard bluetooth adapter is supposed to be supported in this version of Windows IoT. When I use the web portal to search for Bluetooth devices nothing is found, and my Raspberry Pi does not appear to [...] read more