请注意,本文内容源自机器翻译,可能存在语法或其它翻译错误,仅供参考。如需获取准确内容,请参阅链接中的英语原文或自行翻译。
器件型号:CC2650 在 Android 中
传感器标签中
我 可以使用其 UUID 获取所有服务 、但如何获取与 UUID 相对应的名称
TI 是否为 CC2650传感器标签提供了任何列表
调用以下方法
@覆盖
公共空特性更改(BluetoothGatt GATT、BluetoothGattCharacteristic Characteristic){
super.onCharacteristic Changed (GATT、Characteristic);
}
使用 UUID (如 AA01*)配置数据的内容
如何启用?
有一个类似的代码
BluetoothGattDescriptor descriptor = characteristic_getDescriptor(
UUID.fromString(UUID));
descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
mBluetoothGatt.writeDescriptor (描述符);
上面代码中的 UUID 是什么?
谢谢您...