This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.

11 lines
438 B
C
Raw Normal View History

2021-05-11 13:41:06 +10:00
#ifndef DISABLE_LED_MATRIX_CYCLE_UP_DOWN
LED_MATRIX_EFFECT(CYCLE_UP_DOWN)
# ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS
2021-05-29 13:53:10 -07:00
static uint8_t CYCLE_UP_DOWN_math(uint8_t val, uint8_t i, uint8_t time) { return scale8(g_led_config.point[i].y - time, val); }
2021-05-11 13:41:06 +10:00
2021-05-29 13:53:10 -07:00
bool CYCLE_UP_DOWN(effect_params_t* params) { return effect_runner_i(params, &CYCLE_UP_DOWN_math); }
2021-05-11 13:41:06 +10:00
# endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS
2021-05-29 13:53:10 -07:00
#endif // DISABLE_LED_MATRIX_CYCLE_UP_DOWN