在我的应用程序中,我使用了setCharacteristicNotification来启用特征通知。在日志猫中,我正在获取通知启用true,也成功完成了onDescriptorWrite回调,但是未调用回调方法onCharacteristicChanged。请帮帮我。提前致谢
日志
D/BluetoothGatt(15694): setCharacteristicNotification() - uuid: 00003c01-0000-1000-8000-00805f9b34fb enable: true
码
mBluetoothGatt.setCharacteristicNotification(characteristic, enabled);
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
return mBluetoothGatt.writeDescriptor(descriptor);
最佳答案
只是在读写操作之间增加了睡眠,现在它可以正常工作了。
try {
Thread.sleep(200);
} catch (InterruptedException e) {
e.printStackTrace();
}