You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are a few minor mistakes in HitachiHeatpumpIR.cpp that prevent the vertical and horizontal swing functions from operating. The corrected code block is below, starting from line 83:
switch (swingVcmd)
{
case VDIR_AUTO:
swingV = HITACHI_AIRCON1_VDIR_AUTO;
break;
case VDIR_SWING:
swingV = HITACHI_AIRCON1_VDIR_SWING;
break;
}
switch (swingHcmd)
{
case HDIR_AUTO:
swingH = HITACHI_AIRCON1_HDIR_AUTO;
break;
case HDIR_SWING:
swingH = HITACHI_AIRCON1_HDIR_SWING;
break;
}
The text was updated successfully, but these errors were encountered:
There are a few minor mistakes in HitachiHeatpumpIR.cpp that prevent the vertical and horizontal swing functions from operating. The corrected code block is below, starting from line 83:
The text was updated successfully, but these errors were encountered: