Android Ble延迟通知

时间:2019-04-01 14:09:24

标签: notifications bluetooth-lowenergy delay

在android BLE上,我通过BLE设备的通知来测量实时感测数据。默认情况下,我每秒获得1次通知数据。但是,我想在一段时间内延迟从设备获取数据。下面是我的代码的屏幕截图。

  setNotificationCallback(mTXCharacteristic)
                .with(new TemperatureMeasurementDataCallback() {
                    @Override
                    public void onDataReceived(@NonNull final BluetoothDevice device, @NonNull final Data data) {
                        PrintLog.i(" "+TemperatureMeasurementParser.parse(data) + " °C");
                        //Toast.makeText(getContext(), " "+TemperatureMeasurementParser.parse(data)  + " °C", Toast.LENGTH_LONG).show();
                        //super.onDataReceived(device, data);
                        onTemperatureMeasurementReceived(device, Float.parseFloat(TemperatureMeasurementParser.parse(data)), TemperatureMeasurementCallback.UNIT_C, null, null);
                    }

                    @Override
                    public void onTemperatureMeasurementReceived(@NonNull final BluetoothDevice device,
                                                                 final float temperature, final int unit,
                                                                 @Nullable final Calendar calendar,
                                                                 @Nullable final Integer type) {
                        mCallbacks.onTemperatureMeasurementReceived(device, temperature, unit, calendar, type);
                    }

                    public void onTemperatureMeasurementReceived(@NonNull final BluetoothDevice device,
                                                                 final float temperature, final int unit,
                                                                 @Nullable final Calendar calendar,
                                                                 @Nullable final Integer type,  @Nullable final Integer batteryLevel) {
                        mCallbacks.onTemperatureMeasurementReceived(device, temperature, unit, calendar, type,batteryLevel);
                    }
                });


        requestMtu(260).enqueue();
        enableNotifications(mTXCharacteristic).enqueue();
        //sleep(10000).enqueue();

2 个答案:

答案 0 :(得分:1)

正在从遥感设备发送通知。因此,如果要延迟或更改接收感应数据的间隔,则需要修改传感器中的代码。这是正确而可靠的方法。或者,您可以在Android应用上启动计时器(例如,每10秒启动一次)。当您从远程设备收到通知时,不要显示它们。而是将它们存储在全局变量中。然后,当10s计时器到期时,打印这些变量并重新启动计时器。

我希望这会有所帮助。

答案 1 :(得分:1)

正如Youssif所说,传感器很可能是外围设备,而应用程序是中央设备。数据是通过GATT / GAP传输的,根据您的GAP配置,您可能会在外围设备中遇到瓶颈。

此信息可能会帮助您进一步Bluetooth Low Energy Notification Interval

应用程序上的软件休眠是一个hack解决方案,但仍然是一个解决方案:)