Subscribe to a BLE Gatt notification Android

后端 未结 2 753
失恋的感觉
失恋的感觉 2021-02-02 09:58

I´m developing an BLE app, based on the Gatt sample project provided by google: https://developer.android.com/samples/BluetoothLeGatt/index.html. So, I can send data writing in

2条回答
  •  有刺的猬
    2021-02-02 10:51

    To receive notification in Android you need to set characteristic notification to true

    gatt.setCharacteristicNotification(characteristic, true);
    

    You also need to set the client characteristic configuration descriptor 0x2902

    // 0x2902 org.bluetooth.descriptor.gatt.client_characteristic_configuration.xml
    UUID uuid = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");
    BluetoothGattDescriptor descriptor = characteristic.getDescriptor(uuid);
    descriptor.setValue(BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE);
    gatt.writeDescriptor(descriptor);
    

    A better API would be for setCharacteristicNotification to set the descriptor, but unfortunately it doesn't seem to work that way.

提交回复
热议问题