如何在不连接BLE设备的情况下连续获取RSSI?

时间:2013-11-18 21:37:45

标签: android bluetooth bluetooth-lowenergy rssi

我的应用程序需要不断获得蓝牙设备的RSSI值以进行一些距离-rssi近似,不连接。但是,BluetoothAdapter的回调方法仅在设备扫描时获取RSSI一次。

// Device scan callback
private BluetoothAdapter.LeScanCallback leScanCallback = new BluetoothAdapter.LeScanCallback() {
    @Override
    public void onLeScan(final BluetoothDevice device, final int rssi, byte[] scanRecord) {
        runOnUiThread(new Runnable() {
            public void run() {
                ...
            }
        });     
    }   
};

作为解决方案,我创建了两个Runnable个对象。一个用于启动,另一个用于停止扫描过程。这两个对象连续相互调用,直到得到我想要的RSSI值。之后,我的Handler将其从邮件队列中删除。

private Runnable startScan = new Runnable() {       
    @Override
    public void run() {
        bluetoothAdapter.startLeScan(leScanCallback);
        scanHandler.postDelayed(stopScan, SCAN_INTERVAL);
    }               
};

private Runnable stopScan = new Runnable() {        
    @Override
    public void run() {         
        bluetoothAdapter.stopLeScan(leScanCallback);                                            
        scanHandler.postDelayed(startScan, STOP_INTERVAL);          
    }
};

这似乎有效,但我想知道是否有更多可行的选择,无需连接即可。

1 个答案:

答案 0 :(得分:1)

如果播放信标是广告并且无法连接,则会连续调用onLeScan。 如果它们可以连接信标,则该功能取决于设备。