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
For some device, we can't not setup ble notification using current implementation of ble notification setup in the library.
However, if I change bluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
to bluetoothGatt.setWriteType(BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT); bluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
the notification is set up correctly.
I think it's a known bug as also stated and solved in the below repo. Android-nRF-Toolbox
The text was updated successfully, but these errors were encountered:
Summary
For some device, we can't not setup ble notification using current implementation of ble notification setup in the library.
However, if I change
bluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
to
bluetoothGatt.setWriteType(BluetoothGattCharacteristic.WRITE_TYPE_DEFAULT);
bluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
the notification is set up correctly.
I think it's a known bug as also stated and solved in the below repo.
Android-nRF-Toolbox
The text was updated successfully, but these errors were encountered: