Android Ble延迟通知

问题描述 投票:3回答:2

在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();
notifications bluetooth-lowenergy delay
2个回答
1
投票

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

我希望这有帮助。


1
投票

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

这篇文章可能会帮助你进一步Bluetooth Low Energy Notification Interval

应用程序上的软件睡眠是一个黑客解决方案,但同样解决方案:)

© www.soinside.com 2019 - 2024. All rights reserved.