-
-
Notifications
You must be signed in to change notification settings - Fork 567
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
Device support of the Xiaomi Air Humidifier #66
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
import logging | ||
import enum | ||
from typing import Any, Dict, Optional | ||
from collections import defaultdict | ||
from .device import Device | ||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
|
||
class OperationMode(enum.Enum): | ||
Silent = 'silent' | ||
Medium = 'medium' | ||
High = 'high' | ||
|
||
|
||
class LedBrightness(enum.Enum): | ||
Bright = 0 | ||
Dim = 1 | ||
Off = 2 | ||
|
||
|
||
class AirHumidifier(Device): | ||
"""Main class representing the air humidifier.""" | ||
|
||
def status(self): | ||
"""Retrieve properties.""" | ||
|
||
properties = ['power', 'mode', 'temp_dec', 'humidity', 'buzzer', | ||
'led_b', ] | ||
|
||
values = self.send( | ||
"get_prop", | ||
properties | ||
) | ||
|
||
properties_count = len(properties) | ||
values_count = len(values) | ||
if properties_count != values_count: | ||
_LOGGER.debug( | ||
"Count (%s) of requested properties does not match the " | ||
"count (%s) of received values.", | ||
properties_count, values_count) | ||
|
||
return AirHumidifierStatus( | ||
defaultdict(lambda: None, zip(properties, values))) | ||
|
||
def on(self): | ||
"""Power on.""" | ||
return self.send("set_power", ["on"]) | ||
|
||
def off(self): | ||
"""Power off.""" | ||
return self.send("set_power", ["off"]) | ||
|
||
def set_mode(self, mode: OperationMode): | ||
"""Set mode.""" | ||
return self.send("set_mode", [mode.value]) | ||
|
||
def set_led_brightness(self, brightness: LedBrightness): | ||
"""Set led brightness.""" | ||
return self.send("set_led_b", [brightness.value]) | ||
|
||
def set_led(self, led: bool): | ||
"""Turn led on/off.""" | ||
if led: | ||
return self.send("set_led", ['on']) | ||
else: | ||
return self.send("set_led", ['off']) | ||
|
||
def set_buzzer(self, buzzer: bool): | ||
"""Set buzzer on/off.""" | ||
if buzzer: | ||
return self.send("set_buzzer", ["on"]) | ||
else: | ||
return self.send("set_buzzer", ["off"]) | ||
|
||
|
||
class AirHumidifierStatus: | ||
"""Container for status reports from the air humidifier.""" | ||
|
||
def __init__(self, data: Dict[str, Any]) -> None: | ||
self.data = data | ||
|
||
@property | ||
def power(self) -> str: | ||
return self.data["power"] | ||
|
||
@property | ||
def is_on(self) -> bool: | ||
return self.power == "on" | ||
|
||
@property | ||
def mode(self) -> OperationMode: | ||
return OperationMode(self.data["mode"]) | ||
|
||
@property | ||
def temperature(self) -> Optional[float]: | ||
if self.data["temp_dec"] is not None: | ||
return self.data["temp_dec"] / 10.0 | ||
return None | ||
|
||
@property | ||
def humidity(self) -> int: | ||
return self.data["humidity"] | ||
|
||
@property | ||
def buzzer(self) -> bool: | ||
return self.data["buzzer"] == "on" | ||
|
||
@property | ||
def led(self) -> bool: | ||
return self.data["led"] == "on" | ||
|
||
@property | ||
def led_brightness(self) -> Optional[LedBrightness]: | ||
if self.data["led_b"] is not None: | ||
return LedBrightness(self.data["led_b"]) | ||
return None | ||
|
||
def __str__(self) -> str: | ||
s = "<AirHumidiferStatus power=%s, mode=%s, temperature=%s, " \ | ||
"humidity=%s%%, led=%s, led_brightness=%s, buzzer=%s>" % \ | ||
(self.power, self.mode, self.temperature, | ||
self.humidity, self.led, self.led_brightness, self.buzzer) | ||
return s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
undefined name 'AirHumidifier'