mBluetoothGatt.getService(uuid) returns null

前端 未结 3 1213
误落风尘
误落风尘 2021-01-18 08:34

In my app , i am passng the UUID number of the hearing aid service as in the BLE sample from google i.e. 0000a00-0000-1000-8000-00805f9b34fb

But the getservice retur

3条回答
  •  迷失自我
    2021-01-18 09:13

    You have to first discover all services for the given device per documentation.

    This function requires that service discovery has been completed for the given device. http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#getService(java.util.UUID)

    @Override
        // New services discovered
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            if (status == BluetoothGatt.GATT_SUCCESS) {
                BluetoothGattService mBluetoothGattService = mBluetoothGatt.getService(UUID.fromString(serviceUUID));
                if (mBluetoothGattService != null) {
                    Log.i(TAG, "Service characteristic UUID found: " + mBluetoothGattService.getUuid().toString());
                } else {
                    Log.i(TAG, "Service characteristic not found for UUID: " + serviceUUID);
            }
        }
    

    Or you can just run a search

    for (BluetoothGattService gattService : gattServices) {
        Log.i(TAG, "Service UUID Found: " + gattService.getUuid().toString());
    }
    

提交回复
热议问题