7

私のアプリでは、グーグルのBLEサンプルのように補聴器サービスのUUID番号を渡しています。

ただし、 getservice が null を返すのは、サービスが BluetoothGatt でサポートされていないことを意味します。なぜこれが起こっているのですか、誰か助けてください。

4

3 に答える 3

5

ドキュメントごとに、特定のデバイスのすべてのサービスを最初に検出する必要があります。

この関数では、特定のデバイスのサービス ディスカバリが完了している必要があります。 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);
        }
    }

または、検索を実行することもできます

for (BluetoothGattService gattService : gattServices) {
    Log.i(TAG, "Service UUID Found: " + gattService.getUuid().toString());
}
于 2016-03-22T07:13:03.787 に答える
2

リモート データベースの完全な検出[1]を実行してから、サービスを繰り返します。UUIDが間違っている可能性があります。

[1] http://developer.android.com/reference/android/bluetooth/BluetoothGatt.html#discoverServices()

于 2013-11-11T22:35:07.043 に答える
0

あなたのUUIDも間違っています。0000a00-0000-1000-8000-00805f9b34fb ではなく、0000a00X-0000-1000-8000-00805f9b34fb である必要があります。

于 2016-11-06T01:13:04.460 に答える