How do I get RSSI of a device I am already connected to. #879
Unanswered
EdwinFairchild
asked this question in
Q&A
Replies: 1 comment 4 replies
-
This is a case of a feature that is not currently available on all OSes.
If you control the device firmware, you could add a characteristic for reading the RSSI from the remote device. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am connecting to a device like so:
async with BleakClient(self.ble_address, disconnected_callback= self.handle_disconnect) as client:
Now I want be able to get the RSSI from my device periodically, perhaps use it to get a rough estimate of distance
from computer , just as an example... But I am unsure the proper method to get the RSSI once already connected. I have seen
code around here but they are using the scanner object, but once we have scanned and connected how do you continue to get RSSI ?
Beta Was this translation helpful? Give feedback.
All reactions