1
0
Fork 0

[Keyboard] Add Launch Pad keymaps (#12490)

Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
Luis Godinez 2021-08-12 08:51:56 -07:00 committed by GitHub
parent 541e749aa8
commit a2d5468df3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 923 additions and 246 deletions

View file

@ -42,20 +42,3 @@ led_config_t g_led_config = { {
2, 2
} };
#endif
void eeconfig_init_kb(void) {
#ifdef RGBLIGHT_ENABLE
rgblight_enable(); // Enable RGB by default
rgblight_sethsv(0, 255, 255); // Set default HSV - red hue, full saturation, full brightness
# ifdef RGBLIGHT_ANIMATIONS
rgblight_mode(RGBLIGHT_MODE_RAINBOW_SWIRL + 2); // set to RGB_RAINBOW_SWIRL by default
# endif
#endif
#ifdef RGB_MATRIX_ENABLE
rgb_matrix_enable(); // Enable RGB by default
#endif
eeconfig_update_kb(0);
eeconfig_init_user();
}