8000 New Wink services. pair new device, rename, and delete, add new lock key code. Add water heater support by w1ll1am23 · Pull Request #9303 · home-assistant/core · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

New Wink services. pair new device, rename, and delete, add new lock key code. Add water heater support #9303

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

Merged
merged 2 commits into from
Sep 27, 2017
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions homeassistant/components/binary_sensor/wink.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ class WinkHub(WinkBinarySensorDevice):
def device_state_attributes(self):
"""Return the state attributes."""
return {
'update needed': self.wink.update_needed(),
'firmware version': self.wink.firmware_version()
'update_needed': self.wink.update_needed(),
'firmware_version': self.wink.firmware_version(),
'pairing_mode': self.wink.pairing_mode()
}


Expand Down
6 changes: 6 additions & 0 deletions homeassistant/components/climate/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,12 @@
STATE_AUTO = 'auto'
STATE_DRY = 'dry'
STATE_FAN_ONLY = 'fan_only'
STATE_ECO = 'eco'
STATE_ELECTRIC = 'electric'
STATE_PERFORMANCE = 'performance'
STATE_HIGH_DEMAND = 'high_demand'
STATE_HEAT_PUMP = 'heat_pump'
STATE_GAS = 'gas'

ATTR_CURRENT_TEMPERATURE = 'current_temperature'
ATTR_MAX_TEMP = 'max_temp'
Expand Down
4 changes: 2 additions & 2 deletions homeassistant/components/climate/demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ def current_hold_mode(self):

@property
def is_aux_heat_on(self):
"""Return true if away mode is on."""
"""Return true if aux heat is on."""
return self._aux

@property
Expand Down Expand Up @@ -183,7 +183,7 @@ def set_hold_mode(self, hold):
self.schedule_update_ha_state()

def turn_aux_heat_on(self):
"""Turn away auxiliary heater on."""
"""Turn auxillary heater on."""
self._aux = True
self.schedule_update_ha_state()

Expand Down
Loading
0