Android Bluetooth Low Energy readRemoteRssi

Ich kann nicht herausfinden, wie der Rückruf "onReadRemoteRssi" funktioniert.

Mein Code ist sehr einfach:

final BluetoothManager bluetoothManager = (BluetoothManager) getSystemService(Context.BLUETOOTH_SERVICE);
    BluetoothAdapter mBluetoothAdapter = bluetoothManager.getAdapter();
    BluetoothGatt gatt;

    mBluetoothAdapter.startLeScan(new LeScanCallback() {

        @Override
        public void onLeScan(BluetoothDevice device, int rssi, byte[] record) {
            gatt = device.connectGatt(getApplicationContext(), false, new BluetoothGattCallback() {
                @Override
                public void onReadRemoteRssi(BluetoothGatt gatt, int rssi, int status) {
                    super.onReadRemoteRssi(gatt, rssi, status);
                    Log.d(TAG, "rssi is : " + rssi);
                }
            });
        }
    });

    gatt.readRemoteRssi(); //returns true

Der Rückruf wird nie angerufen. Hat jemand eine Idee?

Vielen Dank !

Antworten auf die Frage(3)

Ihre Antwort auf die Frage