Skip to content

Commit f5f8710

Browse files
authored
[BUG] Fix missing parameter in call to IRac::gree() (crankyoldgit#2008)
PR crankyoldgit#1928 missed extending the call to `gree()` resulting in subsequent parameters being shifted by one place. Fixes crankyoldgit#2007
1 parent 8082175 commit f5f8710

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/IRac.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3256,7 +3256,8 @@ bool IRac::sendAc(const stdAc::state_t desired, const stdAc::state_t *prev) {
32563256
_modulation);
32573257
gree(&ac, (gree_ac_remote_model_t)send.model, send.power, send.mode,
32583258
send.celsius, send.degrees, send.fanspeed, send.swingv, send.swingh,
3259-
send.turbo, send.econo, send.light, send.clean, send.sleep);
3259+
send.iFeel, send.turbo, send.econo, send.light, send.clean,
3260+
send.sleep);
32603261
break;
32613262
}
32623263
#endif // SEND_GREE

0 commit comments

Comments
 (0)