Hi, I'm testing BTFramework library for developing a windows 10 sensor client based on bluetooth low energy.
The sensor publish a custom service with a characteristic to suscribe as notification.
I'm using this code to setting up the characteristic:
dataCharacteristic.OnChanged += MldpService_DataReceived;
result = dataCharacteristic.Subscribe(currentRadio);
But the event is never called when the sensor updates de characteristic.
I've tried to setting up the descriptor but BTFrameWork library only allow read descriptor fields.
The sensor works fine using my own android app, so I assume that the sensor writes fine the characteristic value.
Any ideas?
Thanks in advance.