Skip to content

Commit

Permalink
Fix some RGB Matrix-enabled keymaps referring to RGBLight mode (#13509)
Browse files Browse the repository at this point in the history
  • Loading branch information
fauxpark authored Jul 14, 2021
1 parent ffdfe37 commit 99f637e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion keyboards/crkbd/keymaps/kidbrazil/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ void keyboard_post_init_user(void) {
// Set RGB to known state
rgb_matrix_enable_noeeprom();
rgb_matrix_set_color_all(RGB_GREEN);
rgblight_mode_noeeprom(RGBLIGHT_MODE_STATIC_LIGHT);
rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
user_led_enabled = true;
}
// [Process User Input] ------------------------------------------------------//
Expand Down
4 changes: 2 additions & 2 deletions keyboards/dztech/dz60rgb/keymaps/piv3rt/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {

void reset_leds(void) {
current_profile = OFF;
rgblight_enable();
rgblight_mode(RGBLIGHT_MODE_STATIC_LIGHT);
rgb_matrix_enable();
rgb_matrix_mode(RGB_MATRIX_SOLID_COLOR);
rgb_matrix_sethsv(0x6a, 0x33, 0xff);
}

Expand Down

0 comments on commit 99f637e

Please sign in to comment.