danny-source / Arduino_DY_IRDaikin

Arduino control Daikin AC
69 stars 36 forks source link

Bug in setTemp/ #1

Closed delfinof closed 7 years ago

delfinof commented 9 years ago

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

danny-source commented 9 years ago

You are right, remote control temp is 18~32 if (temp >= 18 && temp<=32) { daikin[14] = (temp)*2; daikinController_checksum(); }

it has updated