Bugfix auto/manual mode change (#3384)
This commit is contained in:
parent
812dc99073
commit
e4f4e91096
3 changed files with 5 additions and 2 deletions
|
@ -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):
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue