• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Help Bluetooth, rssi and read Tx power...

Hi,

for a bluetooth application would need to calculate with accuracy the distance between two devices. From my research I need two parameters, RSSI and TX Power

Through the discovery of the devices can read RSSI, eg:
BluetoothDevice bluetoothDevice = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
int rssi = intent.getShortExtra(BluetoothDevice.EXTRA_RSSI,Short.MIN_VALUE);


while I can not find a way to read the tx power of a Bluetooth device via the Android API ....

Can anyone help me......

Thanks in advance
 
Back
Top Bottom