Exemple #1
0
    def min_temp(self):
        """Return the minimum temperature."""
        # Hot water temp doesn't support being changed
        if self._hot_water:
            return zone_target_temperature(self._zone)

        return 5.0
Exemple #2
0
    def max_temp(self):
        """Return the maximum temperature."""
        if self._hot_water:
            return zone_target_temperature(self._zone)

        return 35.0
Exemple #3
0
 def turn_aux_heat_on(self):
     """Turn auxiliary heater on."""
     self._ember.activate_boost_by_name(self._zone_name,
                                        zone_target_temperature(self._zone))
Exemple #4
0
 def target_temperature(self):
     """Return the temperature we try to reach."""
     return zone_target_temperature(self._zone)