Bugfix auto/manual mode change (#3384)

This commit is contained in:
Pascal Vizeli 2016-09-13 21:43:37 +02:00 committed by GitHub
parent 812dc99073
commit e4f4e91096
3 changed files with 5 additions and 2 deletions

View File

@ -99,6 +99,9 @@ class HMThermostat(homematic.HMDevice, ClimateDevice):
return None
if temperature is None:
return
if self.current_operation == STATE_AUTO:
return self._hmdevice.actionNodeData('MANU_MODE', temperature)
self._hmdevice.set_temperature(temperature)
def set_operation_mode(self, operation_mode):

View File

@ -23,7 +23,7 @@ from homeassistant.config import load_yaml_config_file
from homeassistant.util import Throttle
DOMAIN = 'homematic'
REQUIREMENTS = ["pyhomematic==0.1.13"]
REQUIREMENTS = ["pyhomematic==0.1.14"]
HOMEMATIC = None
HOMEMATIC_LINK_DELAY = 0.5

View File

@ -324,7 +324,7 @@ pyenvisalink==1.0
pyfttt==0.3
# homeassistant.components.homematic
pyhomematic==0.1.13
pyhomematic==0.1.14
# homeassistant.components.device_tracker.icloud
pyicloud==0.9.1