ToniA / arduino-heatpumpir

An Arduino library to control split-unit heatpumps over Infrared
GNU General Public License v2.0
389 stars 141 forks source link

FuegoHeatpumpIR compatibility with Einhell SKA-5000 C+H Heatpump / Komeco #35

Closed roquestrongo closed 7 years ago

roquestrongo commented 7 years ago

Just want to add the information that i succesfully got a Einhell AC/Heatpump working by using the Fuego settings.

Only thing to change was Line 65 in FuegoHeatpumpIR.cpp:

if ( temperatureCmd > 17 && temperatureCmd < 32)

to

if ( temperatureCmd > 15 && temperatureCmd < 32)

as the Einhells temp-range is 16°C-31°C.

Maybe this is usefull for someone looking for this AC or the identical unit sold by Komeco.

ToniA commented 7 years ago

Thanks, this sounds reasonable :)