BluetoothLeGatt Android BLE示例包含以下代码:
public void setCharacteristicNotification(BluetoothGattCharacteristic characteristic,
boolean enabled) {
if (mBluetoothAdapter == null || mBluetoothGatt == null) {
Log.w(TAG, "BluetoothAdapter not initialized");
return;
}
mBluetoothGatt.setCharacteristicNotification(characteristic, enabled);
// This is specific to Heart Rate Measurement.
if (UUID_HEART_RATE_MEASUREMENT.equals(characteristic.getUuid())) {
BluetoothGattDescriptor descriptor = characteristic.getDescriptor(
UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
mBluetoothGatt.writeDescriptor(descriptor);
}
}
我的问题基本上是,为什么标记的代码特定于心率测量?似乎具有客户端特征配置描述符(CCCD)特性是控制特征通知的标准方法,那么为什么setCharacteristicNotification()没有负责写入呢?而且由于它没有那样做,setCharacteristicNotification()实际上做了什么?
我对BLE很新,在互联网上没有任何解释,并不认为你已经理解了这一切!所以不要以为我知道什么是CCCD或其他什么!很难找到CCCD甚至代表什么!
编辑:另请参阅此答案,该答案支持我对CCCD的理解(并让我继续想知道为什么你必须在Android中手动写入它们,当有一个看起来应该为你做的功能时):https://devzone.nordicsemi.com/index.php/what-does-cccd-mean
解决方法:
我觉得回答有点迟,但今天我有同样的疑问,我找到了一个明确的答案.
使用setCharacteristicNotification()启用通知localy(在Android设备上)并将CCC描述符设置为ENABLE_NOTIFICATION_VALUE,您可以在ble外设上启用通知.实际上,为了启用CCC通知,您必须使用setValue()和writeDescriptor(),它们是用于将特性(在本例中为特征描述符)写入远程设备的方法.
我发现了这个:http://processors.wiki.ti.com/index.php/SensorTag_User_Guide