android - 无法通过低功耗蓝牙发现服务和特征 - BLE

标签 android service bluetooth bluetooth-lowenergy android-bluetooth

我正在研究低功耗蓝牙 - BLE。

我可以使用 BLE 通过蓝牙扫描并查找、连接到固件设备。

mBluetoothGatt = mAl.get(pos).connectGatt(mContext, false, mGattCallback);

虽然来自 Play 商店的应用程序可以在固件设备中发现 ServicesCharacteristics,但我的 android 应用程序无法发现它们,它总是返回空服务列表。实际上,固件设备已经设置了ServicesCharacteristics

我不知道为什么,谁知道为什么,请帮助我如何发现ServicesCharacteristics

谢谢,

Java代码

// Various callback methods defined by the BLE API.
    private final BluetoothGattCallback mGattCallback = new BluetoothGattCallback() {
        @Override
        public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
            if (newState == BluetoothProfile.STATE_CONNECTED) {
                /**
                 * In case already connected to Pas device
                 */
                Log.i("", "Connected to GATT server. " + gatt.discoverServices());
                // CALL THIS METHOD TO BEGIN DISCOVER SERVICES
                gatt.discoverServices();

            } else if (newState == BluetoothProfile.STATE_DISCONNECTED) {
                /**
                 * In case disconnected Pas device
                 */
                Log.i("", "Disconnected from GATT server.");
            }
        }

        @Override
        // New services discovered
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            Log.i("", "onServicesDiscovered " + status + " " + gatt.discoverServices()
                    + " " + gatt.getServices());

            // RETURN : []
            Log.i("", "gatt.getServices() " + gatt.getServices());
            // RETURN : TRUE
            Log.i("", "gatt.getServices() " + gatt.getServices().isEmpty());

            // EXCEPTION HAPPEN BCS SIZE = 0
            gatt.readCharacteristic(gatt.getServices().get(0).getCharacteristics().get(0));

            if (status == BluetoothGatt.GATT_SUCCESS) {
            } else {
                Log.w("", "onServicesDiscovered received: " + status);
            }
        }

        @Override
        // Result of a characteristic read operation
        public void onCharacteristicRead(
                BluetoothGatt gatt, BluetoothGattCharacteristic characteristic,
                int status) {
            Log.i("", "onCharacteristicRead " + status + " " + characteristic);

            if (status == BluetoothGatt.GATT_SUCCESS) {
            }
        }
    };

// Device scan callback.
        private BluetoothAdapter.LeScanCallback mLeScanCallback =
                new BluetoothAdapter.LeScanCallback() {
                    @Override
                    public void onLeScan(final BluetoothDevice device, int rssi,
                                         byte[] scanRecord) {
                        getActivity().runOnUiThread(new Runnable() {
                            @Override
                            public void run() {
                                /**
                                 * Should show Scan Pas Devices :
                                 * Add to array list scanned pas devices if it is not exist in list
                                 * before
                                 */
                                if (!mAlPasDeviceNames.contains(device.getName())) {
                                    mAlPasDevices.add(device);
                                    mAlPasDeviceNames.add(device.getName());

                                    // set adapter and show on UI
                                    mLv.setAdapter(new PasConnectionAdapter(
                                            getActivity(),
                                            R.layout.simple_list_item_scan_pas_device,
                                            mAlPasDevices));
                                }
                            }
                        });
                    }
                };

逻辑猫

connect() - device: E2:5A:6B:5A:18:57, auto: false
D/BluetoothGatt: registerApp()
D/BluetoothGatt: registerApp() - UUID=93455863-c385-4563-9197-6592024cc8cc
D/BtGatt.GattService: registerClient() - UUID=93455863-c385-4563-9197-6592024cc8cc
D/BtGatt.GattService: onClientRegistered() - UUID=93455863-c385-4563-9197-6592024cc8cc, clientIf=5
D/BluetoothGatt: onClientRegistered() - status=0 clientIf=5
D/BtGatt.GattService: clientConnect() - address=E2:5A:6B:5A:18:57, isDirect=true
E/BluetoothRemoteDevices: aclStateChangeCallback: Device is NULL
D/BtGatt.GattService: onConnected() - clientIf=5, connId=5, address=E2:5A:6B:5A:18:57
D/BluetoothGatt: onClientConnectionState() - status=0 clientIf=5 device=E2:5A:6B:5A:18:57
D/BluetoothGatt: discoverServices() - device: E2:5A:6B:5A:18:57
D/BtGatt.GattService: discoverServices() - address=E2:5A:6B:5A:18:57, connId=5
I/: Connected to GATT server. true
D/BluetoothGatt: discoverServices() - device: E2:5A:6B:5A:18:57
D/BtGatt.GattService: discoverServices() - address=E2:5A:6B:5A:18:57, connId=5
D/BtGatt.GattService: onSearchCompleted() - connId=5, status=0
D/BtGatt.GattService: onSearchCompleted() - connId=5, status=0
E/BtGatt.btif: bta_to_btif_uuid: Unknown UUID length 61618!
E/BtGatt.btif: bta_to_btif_uuid: Unknown UUID length 61619!
I/: gatt.getService(uuid) null
D/BluetoothGatt: onSearchComplete() = Device=E2:5A:6B:5A:18:57 Status=0
D/BluetoothGatt: discoverServices() - device: E2:5A:6B:5A:18:57
D/BtGatt.GattService: discoverServices() - address=E2:5A:6B:5A:18:57, connId=5
D/BtGatt.GattService: onSearchCompleted() - connId=5, status=0
I/: onServicesDiscovered 0 true []
I/: gatt.getServices() []
I/: gatt.getServices() true
E/BtGatt.btif: bta_to_btif_uuid: Unknown UUID length 61621!
W/BluetoothGatt: Unhandled exception in callback
W/BluetoothGatt: java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0
W/BluetoothGatt:     at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:255)
W/BluetoothGatt:     at java.util.ArrayList.get(ArrayList.java:308)
W/BluetoothGatt:     at ui.fragment.PasConnectionFragment$1.onServicesDiscovered(PasConnectionFragment.java:379)
W/BluetoothGatt:     at android.bluetooth.BluetoothGatt$1.onSearchComplete(BluetoothGatt.java:304)
W/BluetoothGatt:     at android.bluetooth.IBluetoothGattCallback$Stub.onTransact(IBluetoothGattCallback.java:217)
W/BluetoothGatt:     at android.os.Binder.execTransact(Binder.java:446)

最佳答案

检查以下代码,它将向您显示服务数量及其 uuid

 @Override
        public void onServicesDiscovered(BluetoothGatt gatt, int status) {
            Log.e("BluetoothLeService", "onServicesDiscovered()");
            if (status == BluetoothGatt.GATT_SUCCESS) {


                List<BluetoothGattService> gattServices = mBluetoothGatt.getServices();
                Log.e("onServicesDiscovered", "Services count: "+gattServices.size());

                for (BluetoothGattService gattService : gattServices) {
                    String serviceUUID = gattService.getUuid().toString();
                    Log.e("onServicesDiscovered", "Service uuid "+serviceUUID);
                }


            } else {
                Log.w(TAG, "onServicesDiscovered received: " + status);
            }
        }

关于android - 无法通过低功耗蓝牙发现服务和特征 - BLE,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33518379/

相关文章:

android - 如何解决 Flutter Web 应用程序在移动浏览器上的白屏问题?

java - 使用 Roboguice 的 Android 工厂辅助注入(inject)不起作用

android - 蓝牙 : onConnectionStateChange Status 8 on Samsung phones

android - 蓝牙服务器线程会待机吗?

linux - 从命令行进行蓝牙配对和连接

android - 使用 Cordova gradle wrapper 时指定不同的存储库

Android:确定ActionBar Tab的高度

grails - grails服务::多个项目

windows - 音频服务未启动/正常运行

angular - [ Angular 7+] : How to unit test a service inside another service spec?