7

在我的应用程序中,我传递了助听器服务的 UUID 编号,如 google 的 BLE 示例中的那样,即 0000a00-0000-1000-8000-00805f9b34fb

但是 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 也是错误的。它应该是 0000a00X-0000-1000-8000-00805f9b34fb,而不是 0000a00-0000-1000-8000-00805f9b34fb

于 2016-11-06T01:13:04.460 回答