You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The device I'm working against has a service 0000ffe0-0000-1000-8000-00805f9b34fb which is discovered just fine with discoverServices. When I call discoverCharacteristics with that ID the promise never gets returned. I did a little debugging and for some reason in the args for discoverCharacteristics in bluetooth.ios.js the id is coming through as ffe0 but everything seems fine until we get to this if statement.
if (UUID === pUUID && sUUID === args.serviceUUID)
Here the sUUID does not equal args.serviceUUID and this is where the call will hang at.
As far as I can tell I have 2 issues here.
The args isn't coming through properly.
The if statement above should return the promise as a reject if it is not met.
The text was updated successfully, but these errors were encountered:
@jthottel about the id is coming through as ffe0 i think it is a standard behavior for know services/chars in that "namespace". Can you try using ffe0 as serviceUUID?
The device I'm working against has a service 0000ffe0-0000-1000-8000-00805f9b34fb which is discovered just fine with discoverServices. When I call discoverCharacteristics with that ID the promise never gets returned. I did a little debugging and for some reason in the args for discoverCharacteristics in bluetooth.ios.js the id is coming through as ffe0 but everything seems fine until we get to this if statement.
if (UUID === pUUID && sUUID === args.serviceUUID)
Here the sUUID does not equal args.serviceUUID and this is where the call will hang at.
As far as I can tell I have 2 issues here.
The text was updated successfully, but these errors were encountered: