写了一个安卓app, 通过以下的安卓代码send characterestic, 想问下bluenrg的哪个callback会被call在发送以后?
BluetoothGattService gattService =
bluetooth_gatt.getService(java.util.UUID.fromString(serviceUuid));
BluetoothGattCharacteristic gattChar = gattService
.getCharacteristic(java.util.UUID.fromString(characteristicUuid));
gattChar.setValue(value);
bluetooth_gatt.writeCharacteristic(gattChar); |