Enabling Bluetooth characteristic Notification in Android (Bluetooth Low Energy ) Not Working

后端 未结 3 581
既然无缘
既然无缘 2020-12-19 17:47

If we call setCharacteristicNotification on a character, not giving Remote Notification on value Change? How to enable the remote Notification on a Central

相关标签:
3条回答
  • 2020-12-19 18:05

    i also receive null value when call descrpitor.setValue, so i just turn it on when discovering service and finally it works very well:

    to notify master device that some characteristic is change, call this function on your pheripheral:

    private BluetoothGattServer server;
    //init....
    
    //on BluetoothGattServerCallback...
    
    //call this after change the characteristic
    server.notifyCharacteristicChanged(device, characteristic, false);
    

    in your master device: enable setCharacteristicNotification after discover the service:

    @Override
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            super.onServicesDiscovered(gatt, status);
            services = mGatt.getServices();
            for(BluetoothGattService service : services){
                if( service.getUuid().equals(SERVICE_UUID)) {
                    characteristicData = service.getCharacteristic(CHAR_UUID);
                    for (BluetoothGattDescriptor descriptor : characteristicData.getDescriptors()) {
                        descriptor.setValue( BluetoothGattDescriptor.ENABLE_INDICATION_VALUE);
                        mGatt.writeDescriptor(descriptor);
                    }
                    gatt.setCharacteristicNotification(characteristicData, true);
                }
            }
            if (dialog.isShowing()){
                mHandler.post(new Runnable() {
                    @Override
                    public void run() {
                        dialog.hide();
                    }
                });
            }
       }
    

    now you can check your characteristic value is change, for example onCharacteristicRead function :

    @Override
    public void onCharacteristicRead(BluetoothGatt gatt, BluetoothGattCharacteristic characteristic, int status) {
            Log.i("onCharacteristicRead", characteristic.toString());
            byte[] value=characteristic.getValue();
            String v = new String(value);
            Log.i("onCharacteristicRead", "Value: " + v);
    }
    
    0 讨论(0)
  • 2020-12-19 18:11

    TO enable Remote Notification on Android,

    setCharacteristicNotification(characteristic, enable) is not enough.

    Need to write the descriptor for the characteristic. Peripheral has to enable characteristic notification while creating the characteristic.

    Once the Notify is enabled , it will have a descriptor with handle 0x2902 . so we need to write BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE to the descriptor. First Convert 0x2902 to 128 bit UUID, it will be like this 00002902-0000-1000-8000-00805f9b34fb (Base Bluetooth UUID is 0000xxxx-0000-1000-8000-00805f9b34fb).

    Code below

     protected static final UUID CHARACTERISTIC_UPDATE_NOTIFICATION_DESCRIPTOR_UUID = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb");
    
    
     * Enable Notification for characteristic
     *
     * @param bluetoothGatt
     * @param characteristic
     * @param enable
     * @return
     */
    public boolean setCharacteristicNotification(BluetoothGatt bluetoothGatt, BluetoothGattCharacteristic characteristic,boolean enable) {
        Logger.d("setCharacteristicNotification");
        bluetoothGatt.setCharacteristicNotification(characteristic, enable);
        BluetoothGattDescriptor descriptor = characteristic.getDescriptor(CHARACTERISTIC_UPDATE_NOTIFICATION_DESCRIPTOR_UUID);
        descriptor.setValue(enable ? BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE : new byte[]{0x00, 0x00});
        return bluetoothGatt.writeDescriptor(descriptor); //descriptor write operation successfully started?
    
    }
    
    0 讨论(0)
  • 2020-12-19 18:16

    To enable notification you should do as following.

    mBluetoothLeService.setCharacteristicNotification(mSampleCharacteristic, true);
    

    of which definition is as following.

    if (enabled) {
                BluetoothGattDescriptor bluetoothGattDescriptor = characteristic.getDescriptor(UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
                bluetoothGattDescriptor.setValue(BluetoothGattDescriptor.ENABLE_INDICATION_VALUE); 
                mBluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
            } else {
                BluetoothGattDescriptor bluetoothGattDescriptor = characteristic.getDescriptor(UUID.fromString(SampleGattAttributes.CLIENT_CHARACTERISTIC_CONFIG));
                bluetoothGattDescriptor.setValue(BluetoothGattDescriptor.DISABLE_NOTIFICATION_VALUE); 
                mBluetoothGatt.writeDescriptor(bluetoothGattDescriptor);
            }
    

    Still if remote notification does not work, try to read characteristics only after enabling notifications for the same.

    Reading characteristics is as

    mBluetoothLeService.readCharacteristic(eachChara);
    
    0 讨论(0)
提交回复
热议问题