This commit is contained in:
Toni 2023-06-15 14:51:09 +03:00
commit f5e6deb8f7
3 changed files with 6 additions and 3 deletions

View File

@ -250,6 +250,9 @@ void MitsubishiHeavyZMHeatpumpIR::send(IRSender& IR, uint8_t powerModeCmd, uint8
case FAN_4:
fanSpeed = MITSUBISHI_HEAVY_ZM_FAN4;
break;
case FAN_5: //Eco mode
fanSpeed = MITSUBISHI_HEAVY_ZM_ECONO;
break;
}
if ( temperatureCmd > 17 && temperatureCmd < 31)
@ -563,4 +566,4 @@ void MitsubishiHeavyZMPHeatpumpIR::sendMitsubishiHeavy(IRSender& IR, uint8_t pow
// End mark
IR.mark(MITSUBISHI_HEAVY_BIT_MARK);
IR.space(0);
}
}

View File

@ -292,7 +292,7 @@ void SamsungFJMHeatpumpIR::send(IRSender& IR, uint8_t powerModeCmd, uint8_t oper
break;
}
if ( temperatureCmd > 15 && temperatureCmd < 28)
if ( temperatureCmd > 15 && temperatureCmd < 31)
{
temperature = temperatureCmd;
}

View File

@ -18,7 +18,7 @@
{
"owner": "crankyoldgit",
"name": "IRremoteESP8266",
"version": "~2.7.12",
"version": "~2.8.4",
"platforms": ["espressif8266"]
}
]