Use current mode to determine which temperature attributes to use (#4858)
This commit is contained in:
parent
6edb54052f
commit
ecc514b7e4
1 changed files with 2 additions and 2 deletions
|
@ -155,8 +155,8 @@ class NestThermostat(ClimateDevice):
|
|||
"""Set new target temperature."""
|
||||
target_temp_low = kwargs.get(ATTR_TARGET_TEMP_LOW)
|
||||
target_temp_high = kwargs.get(ATTR_TARGET_TEMP_HIGH)
|
||||
if target_temp_low is not None and target_temp_high is not None:
|
||||
if self._mode == STATE_HEAT_COOL:
|
||||
if self._mode == STATE_HEAT_COOL:
|
||||
if target_temp_low is not None and target_temp_high is not None:
|
||||
temp = (target_temp_low, target_temp_high)
|
||||
else:
|
||||
temp = kwargs.get(ATTR_TEMPERATURE)
|
||||
|
|
Loading…
Add table
Reference in a new issue