Merge branch 'qmk-pre-merge-2021-09-12' into qmk-merge-2021-09-12
This commit is contained in:
14
quantum/rgb_matrix/animations/cycle_all_anim.h
Normal file
14
quantum/rgb_matrix/animations/cycle_all_anim.h
Normal file
@ -0,0 +1,14 @@
|
||||
#ifdef ENABLE_RGB_MATRIX_CYCLE_ALL
|
||||
#define RGB_MATRIX_EFFECT_CYCLE_ALL
|
||||
RGB_MATRIX_EFFECT(CYCLE_ALL)
|
||||
# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
|
||||
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) { return effect_runner_i(params, &CYCLE_ALL_math); }
|
||||
|
||||
# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
|
||||
#endif // DISABLE_RGB_MATRIX_CYCLE_ALL
|
Reference in New Issue
Block a user