We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513f33f commit 93aa478Copy full SHA for 93aa478
homeassistant/components/homekit/type_thermostats.py
@@ -119,9 +119,11 @@ def __init__(self, *args):
119
self._unit = self.hass.config.units.temperature_unit
120
min_temp, max_temp = self.get_temperature_range()
121
122
- # Homekit only supports 10-38
+ # Homekit only supports 10-38, overwriting
123
+ # the max to appears to work, but less than 10 causes
124
+ # a crash on the home app
125
hc_min_temp = max(min_temp, HC_MIN_TEMP)
- hc_max_temp = min(max_temp, HC_MAX_TEMP)
126
+ hc_max_temp = max_temp
127
128
min_humidity = self.hass.states.get(self.entity_id).attributes.get(
129
ATTR_MIN_HUMIDITY, DEFAULT_MIN_HUMIDITY
0 commit comments