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
|
@ -2,9 +2,9 @@
|
|||
RGB_MATRIX_EFFECT(CYCLE_ALL)
|
||||
#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
|
||||
static void CYCLE_ALL_math(HSV* hsv, uint8_t i, uint8_t time)
|
||||
{
|
||||
hsv->h = time;
|
||||
static HSV CYCLE_ALL_math(HSV hsv, uint8_t i, uint8_t time){
|
||||
hsv.h = time;
|
||||
return hsv;
|
||||
}
|
||||
|
||||
bool CYCLE_ALL(effect_params_t* params) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue