We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
To simplify the map handling, you could probably add this lines to vacuum.py:
@command() def get_recover_maps(self): """Get recover maps.""" return self.send("get_recover_maps") @command( click.argument("id"), click.argument("map"), ) def recover_map(self, id: int, map: int): """Set recover maps .""" payload = [int(id), int(map)] click.echo("Setting the map %s as active" % payload) return self.send("recover_map", payload)[0]
is working fine with my Roborock S6
please se PR: https://github.com/rytilahti/python-miio/pull/608
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
To simplify the map handling, you could probably add this lines to vacuum.py:
is working fine with my Roborock S6
please se PR: https://github.com/rytilahti/python-miio/pull/608
The text was updated successfully, but these errors were encountered: