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

Add support for fanspeeds of Roborock E2 (E20/E25) #718

Merged
merged 1 commit into from
Jun 6, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions miio/vacuum.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,14 @@ class FanspeedV2(enum.Enum):
Gentle = 105


class FanspeedE2(enum.Enum):
# Original names from the app: Silent, Standard, Strong, Max
Silent = 50
Standard = 68
Medium = 79
Turbo = 100


ROCKROBO_V1 = "rockrobo.vacuum.v1"


Expand Down Expand Up @@ -463,6 +471,8 @@ def _autodetect_model(self):
self._fanspeeds = FanspeedV2
else:
self._fanspeeds = FanspeedV1
elif info.model == "roborock.vacuum.e2":
self._fanspeeds = FanspeedE2
else:
self._fanspeeds = FanspeedV2

Expand Down