FlutterBleLib
FlutterBleLib copied to clipboard
Unable to monitor the peripheral
Hi, I used the below code to monitor the data from the ble.
peripheral
.monitorCharacteristic(SensorTagTemperatureUuids.myService,
SensorTagTemperatureUuids.myCharacteristic)
.map((characteristic) => characteristic.value),
log);
This code works fine on android but it's not working on iPhone 6S.
I am getting below Error:
new DeviceDetailsBloc.
Characteristic: [ ] uuid: 0000ffe9-0000-1000-8000-00805f9b34fb [ ] isReadable: true [ ] isWritableWithoutResponse: false [ ] isWritableWithResponse: true [ ] isIndicatable: false [ ] isNotifiable: true
Please help me where is it getting wrong?