3

アプリで具体的な BLE 特性から値を読み取ろうとしていますが、現時点では目的の特性から値を読み取ろうとすると、onCharacteristicRead 関数がトリガーされていないようです。

最初に、デバイスからすべてのサービスを取得するために onServicesDiscovered を使用します。

       override fun onServicesDiscovered(gatt: BluetoothGatt, status: Int) {

        Log.e("BluetoothLeService", "onServiceDiscovered()")
        if(status == BluetoothGatt.GATT_SUCCESS){
            Log.i(TAG, "**ACTION_SERVICE_DISCOVERED** $status")
            var gattServices: List<BluetoothGattService> = mBluetoothGatt!!.services
            Log.e("onServiceDiscovered", "Services count: ${gattServices.size}")
            for(gattService in gattServices){
                var serviceUUID = gattService.uuid.toString()
                Log.e("OnServicesDiscovered", "Service uuid: $serviceUUID" )
                readCharacteristic(gattService)

            }
            Log.e("OnServicesDiscovered", "---------------------------" )

            broadcastUpdate( "com.np.lekotlin.ACTION_GATT_SERVICES_DISCOVERED")

        } else {
            //Service discovery failed so log a warning
            Log.i(TAG, "onServicesDiscovered received: $status")
        }
    }

ご覧のとおり、readCharacteristic 関数を使用して、すべてのサービスに関連付けられたすべてのサービス名と特性を取得するために、for ループを使用します。

   fun readCharacteristic(service: BluetoothGattService) {
    if (mBluetoothAdapter == null || mBluetoothGatt == null) {
        Log.w(TAG, "BluetoothAdapter not initialized")
        return
    }
    var gattCharacteristic: List<BluetoothGattCharacteristic> = service.characteristics
    Log.i(TAG, "**LEO LAS ${gattCharacteristic.count()} CARACTERISTICAS DE $service**")


    for(characteristic in gattCharacteristic){
        Log.e("OnServicesDiscovered", "Service characteristic: ${characteristic.uuid}" )
        if(characteristic.uuid == characteristicRS){
            mBluetoothGatt!!.setCharacteristicNotification(characteristic, true)
            mBluetoothGatt!!.readCharacteristic(characteristic)
        }
    }
    Log.e("OnServicesDiscovered", "-----------------------------" )
}

このすべてのプロセスが最終的に次の結果を返します

E/BluetoothLeService: onServiceDiscovered()
I/PSoCCapSenseLedService: **ACTION_SERVICE_DISCOVERED** 0
E/onServiceDiscovered: Services count: 4
E/OnServicesDiscovered: Service uuid: 00001800-0000-1000-8000-00805f9b34fb
I/PSoCCapSenseLedService: **LEO LAS 3 CARACTERISTICAS DE android.bluetooth.BluetoothGattService@1b31ffb*
E/OnServicesDiscovered: Service characteristic: 00002a00-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: Service characteristic: 00002a01-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: Service characteristic: 00002a04-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: -----------------------------
E/OnServicesDiscovered: Service uuid: 00001801-0000-1000-8000-00805f9b34fb
I/PSoCCapSenseLedService: **LEO LAS 1 CARACTERISTICAS DE android.bluetooth.BluetoothGattService@4254818**
E/OnServicesDiscovered: Service characteristic: 00002a05-0000-1000-8000-00805f9b34fb
-----------------------------
E/OnServicesDiscovered: Service uuid: 00001814-0000-1000-8000-00805f9b34fb
I/PSoCCapSenseLedService: **LEO LAS 4 CARACTERISTICAS DE android.bluetooth.BluetoothGattService@a673271**
E/OnServicesDiscovered: Service characteristic: 00002a53-0000-1000-8000-00805f9b34fb
Service characteristic: 00002a54-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: Service characteristic: 00002a5d-0000-1000-8000-00805f9b34fb
Service characteristic: 00002a55-0000-1000-8000-00805f9b34fb
-----------------------------
E/OnServicesDiscovered: Service uuid: 0000180a-0000-1000-8000-00805f9b34fb
I/PSoCCapSenseLedService: **LEO LAS 3 CARACTERISTICAS DE android.bluetooth.BluetoothGattService@3b51856**
E/OnServicesDiscovered: Service characteristic: 00002a29-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: Service characteristic: 00002a24-0000-1000-8000-00805f9b34fb
Service characteristic: 00002a27-0000-1000-8000-00805f9b34fb
E/OnServicesDiscovered: -----------------------------
---------------------------
D/BluetoothGatt: onConnectionUpdated() - Device=00:A0:50:00:00:0F interval=36 latency=0 timeout=500 status=0

これは完全に正しいです (デバイス上のすべてのサービスと、このサービス内のすべての特性が表示されます)。リターンターミナルですが、ポイントは(私の知る限り)よりも、私が電話した瞬間です

mBluetoothGatt!!.readCharacteristic(characteristic)

関数

override fun onCharacteristicRead(
        gatt: BluetoothGatt,
        characteristic: BluetoothGattCharacteristic,
        status: Int
    ) {
        Log.i(TAG, "HAGO COSAS")
        if (status == BluetoothGatt.GATT_SUCCESS) {
            //See if the read was successful
            Log.i(TAG, "**ACTION_DATA_READ** ${characteristic.uuid}")
            broadcastUpdate("com.np.lekotlin.ACTION_DATA_AVAILABLE"/*, characteristic*/)                 //Go broadcast an intent with the characteristic data
            data = characteristic.value
            Log.e("onCharacteristicRead", "Datos:")
            Log.e("onCharacteristicRead", "$data")

        } else {
            Log.i(TAG, "ACTION_DATA_READ: Error$status")
        }
    }

トリガーして特性から値を返してくれるはずなのですが、結局入ってもいません。私は何を忘れていますか?

PD: データは ByteArray として宣言されています

4

1 に答える 1