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

Fix fan rates for Daikin #23860

Merged
merged 1 commit into from May 17, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions homeassistant/components/daikin/climate.py
Expand Up @@ -81,7 +81,7 @@ def __init__(self, api):
self._api = api
self._list = {
ATTR_OPERATION_MODE: list(HA_STATE_TO_DAIKIN),
ATTR_FAN_MODE: self._api.device.fan_modes,
ATTR_FAN_MODE: self._api.device.fan_rate,
ATTR_SWING_MODE: list(
map(
str.title,
Expand All @@ -97,7 +97,7 @@ def __init__(self, api):
if self._api.device.support_away_mode:
self._supported_features |= SUPPORT_AWAY_MODE

if self._api.device.support_fan_mode:
if self._api.device.support_fan_rate:
self._supported_features |= SUPPORT_FAN_MODE

if self._api.device.support_swing_mode:
Expand Down
2 changes: 1 addition & 1 deletion homeassistant/components/daikin/manifest.json
Expand Up @@ -4,7 +4,7 @@
"config_flow": true,
"documentation": "https://www.home-assistant.io/components/daikin",
"requirements": [
"pydaikin==1.4.3"
"pydaikin==1.4.4"
],
"dependencies": [],
"codeowners": [
Expand Down
2 changes: 1 addition & 1 deletion requirements_all.txt
Expand Up @@ -1024,7 +1024,7 @@ pycsspeechtts==1.0.2
# pycups==1.9.73

# homeassistant.components.daikin
pydaikin==1.4.3
pydaikin==1.4.4

# homeassistant.components.danfoss_air
pydanfossair==0.1.0
Expand Down