1
0
Fork 0

Add missing rgb matrix default parameters (#22281)

This commit is contained in:
Fabien Fellay 2024-01-30 04:56:32 +01:00 committed by GitHub
parent ca7b2d63a7
commit 734c7afa7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 13 additions and 3 deletions

View file

@ -100,7 +100,7 @@ void eeconfig_update_rgb_matrix_default(void) {
rgb_matrix_config.mode = RGB_MATRIX_DEFAULT_MODE;
rgb_matrix_config.hsv = (HSV){RGB_MATRIX_DEFAULT_HUE, RGB_MATRIX_DEFAULT_SAT, RGB_MATRIX_DEFAULT_VAL};
rgb_matrix_config.speed = RGB_MATRIX_DEFAULT_SPD;
rgb_matrix_config.flags = LED_FLAG_ALL;
rgb_matrix_config.flags = RGB_MATRIX_DEFAULT_FLAGS;
eeconfig_flush_rgb_matrix(true);
}