且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

订阅BLE Gatt通知Android

更新时间:2023-01-24 09:55:47

要在Android中接收通知,您需要将特征性通知设置为true

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

gatt.setCharacteristicNotification(characteristic, true);

您还需要设置客户端特征配置描述符0x2902

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);

一个更好的API是让setCharacteristicNotification设置描述符,但是不幸的是,它似乎不是那样工作的.

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