0

Bluetooth デバイスの RSSI 値を返すために Eclipse を使用して Android アプリケーションを開発しています。ニーズに合わせて Android Bluetooth チャットの例を修正しましたが、RSSI 値を返すのに問題があります。ボタンscanを押して近くのデバイスを検出すると、デバイス名、デバイス アドレスが返され、RSSI 値も返されるはずですが、代わりに RSSI が表示されnullます。

if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
                mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress() + getRssi());

    private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
    @Override
    public void onReceive(Context context, Intent intent) {
        String action = intent.getAction();
        // When discovery finds a device
        if (BluetoothDevice.ACTION_FOUND.equals(action)) {
            // Get the BluetoothDevice object from the Intent
            BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
           // Get the Bluetooth RSSI
            short Rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI,Short.MIN_VALUE);
            // If it's already paired, skip it, because it's been listed already
            // Added getRssi()
            if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
                mNewDevicesArrayAdapter.add(device.getName() + "\n" + device.getAddress() + getRssi());
            }
        // When discovery is finished, change the Activity title
        } else if (BluetoothAdapter.ACTION_DISCOVERY_FINISHED.equals(action)) {
            setProgressBarIndeterminateVisibility(false);
            setTitle(R.string.select_device);
            if (mNewDevicesArrayAdapter.getCount() == 0) {
                String noDevices = getResources().getText(R.string.none_found).toString();
                mNewDevicesArrayAdapter.add(noDevices);
            }
        }
    }
};
4

2 に答える 2

0

これは私がRSSIを取得する方法です

String deviceRSSI = (intent.getExtras()).get(BluetoothDevice.EXTRA_RSSI).toString();

private final BroadcastReceiver ActionFoundReceiver = new BroadcastReceiver() {

        @Override
        public void onReceive(Context context, Intent intent) {
            // TODO Auto-generated method stub
            String action = intent.getAction();
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                String deviceRSSI = (intent.getExtras()).get(BluetoothDevice.EXTRA_RSSI).toString();

                btArrayAdapter.add(device.getName() + "\n" + device.getAddress() + "\n" + deviceRSSI);
                btArrayAdapter.notifyDataSetChanged();
            }

            if (action.equals(BluetoothAdapter.ACTION_DISCOVERY_STARTED)) {

            } else if (action.equals(BluetoothAdapter.ACTION_DISCOVERY_FINISHED)) {

            }
        }
    };
于 2013-01-08T13:43:57.390 に答える
0

私は自分で試したことはありませんが、おそらくこのSOの回答が役立ちます:

https://stackoverflow.com/a/2361630/831918

おそらく、NDKを使用して可能です。幸運を!

于 2012-04-18T17:20:26.783 に答える