in the "setTemp" function I read the following if:
if (temp >= 18 && temp>=32)
{
daikin[14] = (temp)*2;
daikinController_checksum();
}
I guess the second condition should be "<=32", isn't it? (it's winter and I am not brave enough to start the cooling ;)
In file IRdaikin.cpp
in the "setTemp" function I read the following if: if (temp >= 18 && temp>=32) { daikin[14] = (temp)*2; daikinController_checksum(); } I guess the second condition should be "<=32", isn't it? (it's winter and I am not brave enough to start the cooling ;)