Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

wifi sugnal strength #155

Closed
kennedyshead opened this issue Jan 6, 2018 · 2 comments
Closed

wifi sugnal strength #155

kennedyshead opened this issue Jan 6, 2018 · 2 comments

Comments

@kennedyshead
Copy link

would be a great way to map wifi strength in various locations of the house! I can see the values in the app so it might be possible?

@rytilahti
Copy link
Owner

You could create a script to parse the wifi signal out from miIO.info output for this, however currently there is no way to get the map without rooting the device afaik. For extracting the strength you could use something like this:

from miio import Vacuum
vac = Vacuum('192.168.1.2', 'token')
info = vac.info()
rssi = info.accesspoint["rssi"]
print("Signal: %s" % rssi)

(for a more generic solution, Vacuum can be replaced with Device)

@rytilahti
Copy link
Owner

Closing for inactivity. Please reopen if needed.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants