Grant

Results 23 comments of Grant

I have looked into this further. I tried making my `GetCharacteristic` method perform a discovery on the service and then iterate and return the match. This fails with a List...

My approach to my wrapper was that on my first get, I discover all characteristics and services and store them in a dictionary. Then on future gets I retrieve them...

I am not using the BluetoothClient because it was not clear to me how I would write to a characteristic and receive a notification. My devices use this method as...

Hi Peter, My wrapper class, `BleDevice` contains a public member `BluetoothDevice` which is of type `InTheHand.Bluetooth.BluetoohDevice` of which I access the `RemoteGattServer` through. At the time of calling I have...

I have now tried copying the [platform connect method](https://github.com/inthehand/32feet/blob/main/InTheHand.BluetoothLE/Platforms/Windows/RemoteGattServer.windows.cs#L34) directly into my project and casting the `IntTheHand.Bluetooth.BluetoothDevice` to `Windows.Devices.Bluetooth.BluetoothLEDevice` to get the `NativeDevice` and the same error is thrown on...

I actually think I see the problem now in my setup. My wrapper is disposable, which I am using in a using block. On dispose, I disconnect. I now see...

The connection isn't performed on construction, but the destruction is performed on disconnection. The concepts of are not linked at both ends which is what caused the issue for me

Hi, op says the link is wrong, comments suggest manual install, final comment links to a line in hacs.json. Anyone know the actual issue as to why this is failing...

Correct me if I am completely wrong, but it looks like we subscribe to push notifications to hear of motion, but then make a connection and read it out of...

- push notifications is recieved - Motion is set because you are told that motion is set - you naively set motion to started in the mqtt - you connect...