5

我正在使用 BLE 设备,但无法onCharacteristicChanged被调用。我有 8BluetoothGattCharacteristic个需要订阅。

找到设备后,onServicesDiscovered我开始订阅每个特征的过程。

private fun requestCharacteristics(gatt: BluetoothGatt, char: BluetoothGattCharacteristic){
        subscribeToCharacteristic(gatt, char, true)
        (charList).getOrNull(0)?.let {
            charList.removeAt(0)
        }
    }

然后在subscribeToCharacteristic我做所有检查描述符。

private val CHARACTERISTIC_UPDATE_NOTIFICATION_DESCRIPTOR_UUID = UUID.fromString("00002902-0000-1000-8000-00805f9b34fb")

private fun subscribeToCharacteristic(gatt: BluetoothGatt, char: BluetoothGattCharacteristic, enable: Boolean) {
        if (gatt.setCharacteristicNotification(char, enable)){
            val descriptor = char.getDescriptor(CHARACTERISTIC_UPDATE_NOTIFICATION_DESCRIPTOR_UUID)
            if (descriptor != null){
                if (BluetoothGattCharacteristic.PROPERTY_NOTIFY != 0 && char.properties != 0) {
                    descriptor.value = BluetoothGattDescriptor.ENABLE_NOTIFICATION_VALUE
                } else if (BluetoothGattCharacteristic.PROPERTY_INDICATE != 0 && char.properties != 0) {
                    descriptor.value = BluetoothGattDescriptor.ENABLE_INDICATION_VALUE
                } else {
                    println("The characteristic does not have NOTIFY or INDICATE property set")

                }
                if (gatt.writeDescriptor(descriptor)){
                    println("this worked")
                } else {
                    println("This did not work")
                }
            } else {
                println("Failed to set client characteristic notification")
            }
        } else {
            println("Failed to register notification")
        }

    }

然后我接到每个特征的电话,onDescriptorWrite并检查我是否需要订阅另一个特征。

override fun onDescriptorWrite(gatt: BluetoothGatt, descriptor: BluetoothGattDescriptor?, status: Int) {
        super.onDescriptorWrite(gatt, descriptor, status)
        if (signalsChars.isNotEmpty()) {
            requestCharacteristics(gatt, signalsChars.first())
        } 
    }

所有这些工作,但我从来没有接到任何电话onCharacteristicChanged。另外,如果我 gatt.readCharacteristic(char)在订阅之前调用,onDescriptorWrite将不会被调用。我再次需要订阅 8 个特征。请帮忙!

4

1 回答 1

0

我最近在 Kotlin 中制作了一个简单的 BLE Client Android 应用程序。你可以在这里找到它的代码。也许它会帮助你。

在我订阅后,gatt.setCharacteristicNotification每次特性更改时都会收到通知,所以我认为你是对的。你确定BLE设备上的特性会改变吗?

此外,如果您有在订阅之前阅读特征的情况,您可以使用onCharacteristicRead方法。它在读取特征时被调用,因此您可以获取描述符并在那里写入。

于 2018-09-02T17:41:07.417 回答