diff --git a/tasmota/xdrv_44_miel_hvac.ino b/tasmota/xdrv_44_miel_hvac.ino index 981cb8643..4c28364e6 100644 --- a/tasmota/xdrv_44_miel_hvac.ino +++ b/tasmota/xdrv_44_miel_hvac.ino @@ -207,7 +207,7 @@ miel_hvac_deg2temp(uint8_t deg) return (31 - deg); } else { - return 2*deg + 128; + return (2*deg + 128); } }