diff options
Diffstat (limited to 'quantum/led_matrix_animations/wave_up_down_anim.h')
-rw-r--r-- | quantum/led_matrix_animations/wave_up_down_anim.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/quantum/led_matrix_animations/wave_up_down_anim.h b/quantum/led_matrix_animations/wave_up_down_anim.h index b68ff9bbc..3cab0597d 100644 --- a/quantum/led_matrix_animations/wave_up_down_anim.h +++ b/quantum/led_matrix_animations/wave_up_down_anim.h | |||
@@ -2,13 +2,9 @@ | |||
2 | LED_MATRIX_EFFECT(WAVE_UP_DOWN) | 2 | LED_MATRIX_EFFECT(WAVE_UP_DOWN) |
3 | # ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS | 3 | # ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS |
4 | 4 | ||
5 | static uint8_t WAVE_UP_DOWN_math(uint8_t val, uint8_t i, uint8_t time) { | 5 | static uint8_t WAVE_UP_DOWN_math(uint8_t val, uint8_t i, uint8_t time) { return scale8(sin8(g_led_config.point[i].y - time), val); } |
6 | return scale8(sin8(g_led_config.point[i].y - time), val); | ||
7 | } | ||
8 | 6 | ||
9 | bool WAVE_UP_DOWN(effect_params_t* params) { | 7 | bool WAVE_UP_DOWN(effect_params_t* params) { return effect_runner_i(params, &WAVE_UP_DOWN_math); } |
10 | return effect_runner_i(params, &WAVE_UP_DOWN_math); | ||
11 | } | ||
12 | 8 | ||
13 | # endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS | 9 | # endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS |
14 | #endif // DISABLE_LED_MATRIX_WAVE_UP_DOWN | 10 | #endif // DISABLE_LED_MATRIX_WAVE_UP_DOWN |