I was struggeling about wrong binary values returned from one of my BLE endpoints. Somehow, they've been converted or encoded in a wrong way. This was an issue long time ago: #42
|
connection.services[serviceUUID][characteristicUUID].notifyCallback(data.toString("binary")); |
If I remove the "binary" argument of the conversion, the values are correct. At least for my use case.
Maybe someone is facing similar problems ;-)