mirror of
https://github.com/home-assistant/core.git
synced 2025-06-03 12:47:06 +00:00
Fix Eco mode display on Nest (#14706)
* Fix Eco mode display on Nest * Fix Hound problems
This commit is contained in:
parent
a58a566ae8
commit
f32b50cb80
@ -134,7 +134,9 @@ class NestThermostat(ClimateDevice):
|
||||
@property
|
||||
def target_temperature(self):
|
||||
"""Return the temperature we try to reach."""
|
||||
if self._mode != NEST_MODE_HEAT_COOL and not self.is_away_mode_on:
|
||||
if self._mode != NEST_MODE_HEAT_COOL and \
|
||||
self._mode != STATE_ECO and \
|
||||
not self.is_away_mode_on:
|
||||
return self._target_temperature
|
||||
return None
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user