Rename RGB/HSV structs: keyboard-level code (#24476)

This commit is contained in:
Ryan 2024-10-13 05:00:56 +11:00 committed by GitHub
parent 5478051d74
commit 9884e4982b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 215 additions and 215 deletions

View file

@ -13,8 +13,8 @@ RGB_MATRIX_EFFECT(startup_animation_solid)
static void startup_animation_setleds(effect_params_t* params, bool dots) {
uint8_t factor = 5;
HSV hsv = rgb_matrix_config.hsv;
RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
hsv_t hsv = rgb_matrix_config.hsv;
rgb_t rgb = rgb_matrix_hsv_to_rgb(hsv);
if (dots) {
rgb_matrix_set_color_all(0, 0, 0);
}