Skip to content

Commit

Permalink
cycles ii pos fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tehn committed Feb 23, 2017
1 parent 5448f8c commit 46acc63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ansible_arc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ void ii_cycles(uint8_t *d, uint8_t len) {
c.pos[3] = d[2] << 6;
}
else if(d[1] < 5)
c.pos[d[1]-1] = d[2] << 8;
c.pos[d[1]-1] = d[2] << 6;
monomeFrameDirty++;
break;
case II_CY_POS + II_GET:
Expand Down

0 comments on commit 46acc63

Please sign in to comment.