forked from mirrors/qmk_userspace
Switching rgb_config_t to use HSV struct
This commit is contained in:
parent
e717dcaa09
commit
cf215487ba
42 changed files with 126 additions and 118 deletions
|
@ -3,8 +3,9 @@
|
|||
RGB_MATRIX_EFFECT(SOLID_REACTIVE)
|
||||
#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
|
||||
static void SOLID_REACTIVE_math(HSV* hsv, uint16_t offset) {
|
||||
hsv->h = rgb_matrix_config.hue + qsub8(130, offset);
|
||||
static HSV SOLID_REACTIVE_math(HSV hsv, uint16_t offset) {
|
||||
hsv.h += qsub8(130, offset);
|
||||
return hsv;
|
||||
}
|
||||
|
||||
bool SOLID_REACTIVE(effect_params_t* params) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue