mirror of
https://github.com/qmk/qmk_userspace.git
synced 2025-09-20 02:41:30 -04:00
Fix HSV setting of non-underglow LEDs
This commit is contained in:
parent
306af84712
commit
d78535e130
1 changed files with 3 additions and 2 deletions
|
@ -61,10 +61,11 @@ static bool HOLOGRAPHICS_UNDERGLOW(effect_params_t* params) {
|
||||||
rgb_matrix_set_color(i, 0x00, 0x85, 0xff);
|
rgb_matrix_set_color(i, 0x00, 0x85, 0xff);
|
||||||
} else if (i == 76 || i == 86) {
|
} else if (i == 76 || i == 86) {
|
||||||
rgb_matrix_set_color(i, 0x00, 0xb2, 0xff);
|
rgb_matrix_set_color(i, 0x00, 0xb2, 0xff);
|
||||||
} else {
|
|
||||||
rgb_matrix_set_color(i, 0x00, 0x00, 0x00);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
rgb_matrix_set_color(i, 0x00, 0x00, 0x00);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return rgb_matrix_check_finished_leds(led_max);
|
return rgb_matrix_check_finished_leds(led_max);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue