45

我想获取连接到我手机的另一台设备的蓝牙信号强度,

如何获取蓝牙信号强度?

我试图通过谷歌搜索很多,但没有找到任何答案。

有人知道我该如何实施吗?

这是我的活动:

public class MainActivity extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        registerReceiver(receiver, new IntentFilter(BluetoothDevice.ACTION_FOUND));


    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    private final BroadcastReceiver receiver = new BroadcastReceiver(){
        @Override
        public void onReceive(Context context, Intent intent) {

            String action = intent.getAction();
            if(BluetoothDevice.ACTION_FOUND.equals(action)) {
                int rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI,Short.MIN_VALUE);
                Toast.makeText(getApplicationContext(),"  RSSI: " + rssi + "dBm", Toast.LENGTH_SHORT).show();
            }
        }
    };

}

我的清单文件中也有蓝牙权限。

4

4 回答 4

46

要获取信号,您可以检查蓝牙 RSSI,您可以读取已连接设备的 RSSI,或执行蓝牙发现以检查附近任何设备的 RSSI。

基本上,蓝牙发现是向范围内的所有站点广播以进行响应。随着每个设备的响应,Android 会触发一个 ACTION_FOUND 意图。在此意图中,您可以通过 getExtra EXTRA_RSSI 获取 RSSI。

请注意,并非所有蓝牙硬件都支持 RSSI。

还相关:关于 Android 蓝牙 RSSI 的 Android IRC 办公时间问题 这是一个蓝牙经典广播接收器示例

private final BroadcastReceiver receiver = new BroadcastReceiver(){
    @Override
    public void onReceive(Context context, Intent intent) {

        String action = intent.getAction();
        if(BluetoothDevice.ACTION_FOUND.equals(action)) {
            int  rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI,Short.MIN_VALUE);
            Toast.makeText(getApplicationContext(),"  RSSI: " + rssi + "dBm", Toast.LENGTH_SHORT).show();
        }
    }
};
于 2013-03-09T16:31:36.587 回答
35

我认为您的代码还可以,但是您需要实施startDiscovery()才能看到结果。

事实是,这BluetoothDevice.EXTRA_RSSI仅适用于发现设备,当您连接到其中一个设备时,您将无法再获得其 RSSI。

在这里,我开发了一个非常简单的 Activity 示例,可让您查看附近设备的 RSSI。您首先需要在布局中添加一个 TextView 和一个 Button,然后启用蓝牙适配器,然后只需单击该按钮。

package com.in2apps.rssi;

import android.os.Bundle;
import android.app.Activity;
import android.bluetooth.BluetoothAdapter;
import android.bluetooth.BluetoothDevice;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.TextView;

public class RSSIActivity extends Activity {

    private BluetoothAdapter BTAdapter = BluetoothAdapter.getDefaultAdapter();

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_rssi);
        registerReceiver(receiver, new IntentFilter(BluetoothDevice.ACTION_FOUND));

        Button boton = (Button) findViewById(R.id.button1);
        boton.setOnClickListener(new OnClickListener(){
            public void onClick(View v) {
                BTAdapter.startDiscovery();
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        getMenuInflater().inflate(R.menu.activity_rssi, menu);
        return true;
    }

    private final BroadcastReceiver receiver = new BroadcastReceiver(){
        @Override
        public void onReceive(Context context, Intent intent) {

            String action = intent.getAction();
            if(BluetoothDevice.ACTION_FOUND.equals(action)) {
                int rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI,Short.MIN_VALUE);
                String name = intent.getStringExtra(BluetoothDevice.EXTRA_NAME);
                TextView rssi_msg = (TextView) findViewById(R.id.textView1);
                rssi_msg.setText(rssi_msg.getText() + name + " => " + rssi + "dBm\n");
            }
        }
    };
}

它看起来是这样的:

RSSI 检测 - Android 示例

于 2013-08-05T00:35:36.960 回答
10

API 18 (Android 4.3) 中引入了必要的 API。您需要调用BluetoothGatt#readRemoteRssi()以发起请求。响应显示在BluetoothCallback#onReadRemoteRssi()回调中。(即处理连接、发现、特征读取等的回调对象)

不再需要广播接收器的东西。

于 2017-03-07T23:28:08.380 回答
5

您可以使用蓝牙设备的 rssi 获取蓝牙设备的信号强度。这可以使用BluetoothAdapter来获取有界设备。

一旦你有了你感兴趣的,只需调用它的connectGatt()并定义一个新的BluetoothGattCallback。这是一个提供很少方法覆盖的接口。下面写的两个将允许您在每次连接状态更改时拥有 rssi。

@Override
protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);

  // Get the default bluetoothAdapter to store bonded devices into a Set of BluetoothDevice(s)
  BluetoothAdapter bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
  // It will work if your bluetooth device is already bounded to your phone
  // If not, you can use the startDiscovery() method and connect to your device
  Set<BluetoothDevice> bluetoothDeviceSet = bluetoothAdapter.getBondedDevices();

  for (BluetoothDevice bluetoothDevice : bluetoothDeviceSet) {
    bluetoothDevice.connectGatt(this, true, new BluetoothGattCallback() {
      @Override
      public void onConnectionStateChange(BluetoothGatt gatt, int status, int newState) {
        super.onConnectionStateChange(gatt, status, newState);
      }
      @Override
      public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
        if(status == BluetoothGatt.GATT_SUCCESS)
          Log.d("BluetoothRssi", String.format("BluetoothGat ReadRssi[%d]", rssi));
      }
    });
  }

}

注意:此示例需要在清单文件中声明以下权限

<uses-permission android:name="android.permission.BLUETOOTH" />
于 2018-03-27T09:47:35.680 回答