Skip to content

Commit

Permalink
Off by one error
Browse files Browse the repository at this point in the history
  • Loading branch information
scott-t-wilson committed Apr 2, 2017
1 parent c9a31e3 commit 3001308
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion keyboards/lfk78/lighting.c
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void led_test(){
set_underglow(0, 0, 0);
force_issi_refresh();
set_underglow(0, 0, 0);
for(uint8_t x = 1; x < sizeof(rgb_sequence); x++){
for(uint8_t x = 0; x < sizeof(rgb_sequence); x++){
set_rgb(rgb_sequence[x], 255, 0, 0);
force_issi_refresh();
_delay_ms(250);
Expand Down

0 comments on commit 3001308

Please sign in to comment.