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

airpurifier_miot: Move favorite_rpm from MB4 to Basic #1070

Merged
merged 4 commits into from
Jun 16, 2021
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: 5 additions & 5 deletions miio/airpurifier_miot.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,11 @@ def motor_speed(self) -> int:
"""Speed of the motor."""
return self.data["motor_speed"]

@property
def favorite_rpm(self) -> Optional[int]:
"""Return favorite rpm level."""
return self.data.get("favorite_rpm")


class AirPurifierMiotStatus(BasicAirPurifierMiotStatus):
"""Container for status reports from the air purifier.
Expand Down Expand Up @@ -292,11 +297,6 @@ def led_brightness_level(self) -> int:
"""Return brightness level."""
return self.data["led_brightness_level"]

@property
def favorite_rpm(self) -> int:
"""Return favorite rpm level."""
return self.data["favorite_rpm"]


class BasicAirPurifierMiot(MiotDevice):
"""Main class representing the air purifier which uses MIoT protocol."""
Expand Down