cordova-plugin-bluetoothle icon indicating copy to clipboard operation
cordova-plugin-bluetoothle copied to clipboard

subscribe(): Descriptor not found

Open marcui13 opened this issue 2 years ago • 0 comments

Hi Rand, thanks for the plugin!

I am currently trying to subscribe to a previously connected device. but I notice that when I execute the subscribe method, I get an error with the message: 'Descriptor not found'

This is the code:

subscribeDevice(devAddress:string){ this.bluetoothle.subscribe({ address: devAddress, service: "1337", characteristic: "99AD1F53-0DC6-4D84-85CF-33CBE47C6EF8" }) .subscribe((resp)=>{ console.log(resp); }, (err)=>{ console.log(err); }) }

Attached screenshot of execution: subscribe

Any idea why it might be failing?

Thank you in advance for helping me and for your time!

Best regards :)

marcui13 avatar Feb 13 '23 15:02 marcui13