Skip to content

Commit 3b9dd39

Browse files
committed
Adjust max temperature to 31ºC
Temperature is sent as `31 - temp`, so the highest temperature we can send is 31ºC. This is also the highest temperature selectable on the remote. Fixes #44.
1 parent ea3e410 commit 3b9dd39

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/mitsubishi/climate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class MitsubishiClimate(MitsubishiEntity, ClimateEntity):
107107
_attr_temperature_unit = UnitOfTemperature.CELSIUS
108108
_attr_target_temperature_step = 0.5
109109
_attr_min_temp = 16.0
110-
_attr_max_temp = 32.0
110+
_attr_max_temp = 31.0
111111
_attr_hvac_modes = [
112112
HVACMode.OFF,
113113
*MODE_HA_TO_MITSUBISHI.keys(),

0 commit comments

Comments
 (0)