Update MitsubishiHeavyHeatpumpIR.cpp

Set FAN_5 to eco mode on ZM, same as on ZMP line 384
This commit is contained in:
karllinder 2022-07-15 01:09:10 +02:00 committed by GitHub
parent bbbd61621a
commit 202546c568
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 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);
}
}