我正在开发一个Android应用程序,用于与Blugiga BLE 112进行通信。这里我的BLE设备旨在为Android提供数据指示,我可以成功写出特征,但我没有得到任何<在android上强大>适应症以下是我尝试设置通知的内容。
public void setCharectresticNotification(
BluetoothGattCharacteristic characteristic,
BluetoothGattDescriptor descriptor) {
mBluetoothGatt.setCharacteristicNotification(characteristic, true);
descriptor
.setValue(BluetoothGattDescriptor.ENABLE_INDICATION_VALUE);
mBluetoothGatt.writeDescriptor(descriptor);
}
一旦我成功地获得了特征和描述符,我就会调用这个方法。
另请提供我应该遵循的流程,以便在建立连接后设置通知。