Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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