Hardcoded Temperature-Range ist too small

The temperature range in this code is set to 16-27°C.
16°C as low level is correct, Lower temp is not possible in the communication-protocol.
On my Samsung MH035FPEA-unit the maximum temperature is 30°C. For heating mode it would be nice to set this from the arduino-control.

Matthias
This commit is contained in:
matthias882 2022-11-23 14:35:42 +01:00 committed by GitHub
parent 7a81c7cf78
commit aa17bf8a59
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;
}