Bluetooth signal strength

bluedude

Well-Known Member
Licensed User
Longtime User
Hi,

Is there a way to get the Bluetooth signal strength of all devices found?

Cheers,
 

bluedude

Well-Known Member
Licensed User
Longtime User
Signal through broadcast receiver

Hi,

I'm using the broadcast receiver library and do this:

Dim Intent1 As Intent
Dim signal As String
Intent1.Initialize(Action, "")
signal = Intent1.GetExtra ("BluetoothDevice.EXTRA_RSSI")
ToastMessageShow(signal,False)
'can only abort when sendOrderedbroadcast is called.
Broadcast.AbortBroadcast

Not sure if it works, discovery gives three devices but service just reports one event and not getting the signal strength.

Any suggestions? Isn't it possible to do it during discovery?

Cheers,
 
Upvote 0
Top