android BLE api oncharacteristicchanged没有响应特征写

时间:2015-05-30 12:31:56

标签: android characteristics

我一直致力于在谷歌的nexus 6& 9上读写BLE。

我想在远程设备上写一个特性,并在写完后通知远程设备。

以下代码写入特征

if ((charaProp & BluetoothGattCharacteristic.PROPERTY_WRITE) > 0) {
    byte[] test = hexStringToByteArray("3132333435363738393031323334353637383930");
    //byte[] value = new byte[1];
    //value[0] = (byte) (21 & 0xFF);
    Log.d("text",characteristic.getDescriptors().size()+"");
    BluetoothGattDescriptor descriptor1 =  characteristic.getDescriptor(UUID.fromString(serviceOneCharUuid));
    descriptor1.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
    characteristic.setValue(test);
    if(mBluetoothGatt.writeDescriptor(descriptor1)){Log.d("text","writedescriptor");}
    if(mBluetoothGatt.writeCharacteristic(characteristic)){Log.d("text","setValue");}}

我看到一些帖子告诉我先写描述符,但它不起作用。

我尝试写入BLE usb设备,它显示写入功能按预期工作。而且,本地设备上的回调函数也可以工作。

但是,不会调用远程设备上的oncharacteristicchanged函数 这是在名为BluetoothLeService

的类中编写的所有回调函数的代码
    @Override
    public void onCharacteristicWrite(BluetoothGatt gatt,BluetoothGattCharacteristic characteristic, int status){
        Log.d("text",new String(characteristic.getValue()));
    }
    @Override
    public void onCharacteristicRead(BluetoothGatt gatt,BluetoothGattCharacteristic characteristic, int status) {
        if (status == BluetoothGatt.GATT_SUCCESS) {
            broadcastUpdate(ACTION_DATA_AVAILABLE, characteristic);
            Log.d("text","on read");
        }
    }

    @Override
    public void onCharacteristicChanged(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic) {
        Log.d("text", new String(characteristic.getValue()));
    }

任何人都知道这些代码可能有什么问题,或者我错过了什么?

1 个答案:

答案 0 :(得分:0)

我有一个类似的问题让onCharacteristicChanged被调用。我让它工作的方式是等到调用onDescriptorWrite之后才将特性写入BLE设备。