Skip to content

Commit

Permalink
add numpad 5 to position_mode lit leds
Browse files Browse the repository at this point in the history
  • Loading branch information
tsleal29 committed Aug 19, 2024
1 parent d968e53 commit 27a6d77
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ static bool game_mode(effect_params_t* params) {
rgb_matrix_set_color(0, rgb.r, rgb.g, rgb.b); // ESC

rgb_matrix_set_color(39, rgb.r, rgb.g, rgb.b); // W
rgb_matrix_set_color(56, rgb.r, rgb.g, rgb.b); // D
rgb_matrix_set_color(56, rgb.r, rgb.g, rgb.b); // A
rgb_matrix_set_color(57, rgb.r, rgb.g, rgb.b); // S
rgb_matrix_set_color(58, rgb.r, rgb.g, rgb.b); // A
rgb_matrix_set_color(58, rgb.r, rgb.g, rgb.b); // D

rgb_matrix_set_color(83, rgb.r, rgb.g, rgb.b); // up
rgb_matrix_set_color(94, rgb.r, rgb.g, rgb.b); // right
rgb_matrix_set_color(94, rgb.r, rgb.g, rgb.b); // left
rgb_matrix_set_color(95, rgb.r, rgb.g, rgb.b); // down
rgb_matrix_set_color(96, rgb.r, rgb.g, rgb.b); // left
rgb_matrix_set_color(96, rgb.r, rgb.g, rgb.b); // right

return rgb_matrix_check_finished_leds(led_max);
}
Expand All @@ -42,6 +42,7 @@ static bool position_mode(effect_params_t* params) {

rgb_matrix_set_color(59, rgb.r, rgb.g, rgb.b); // F
rgb_matrix_set_color(62, rgb.r, rgb.g, rgb.b); // J
rgb_matrix_set_color(69, rgb.r, rgb.g, rgb.b); // 5
rgb_matrix_set_color(83, rgb.r, rgb.g, rgb.b); // up

return rgb_matrix_check_finished_leds(led_max);
Expand Down

0 comments on commit 27a6d77

Please sign in to comment.