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
457 B
C
Raw Normal View History

2021-05-11 13:41:06 +10:00
#ifndef DISABLE_LED_MATRIX_CYCLE_OUT_IN
LED_MATRIX_EFFECT(CYCLE_OUT_IN)
# ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS
2021-05-29 13:53:10 -07:00
static uint8_t CYCLE_OUT_IN_math(uint8_t val, int16_t dx, int16_t dy, uint8_t dist, uint8_t time) { return scale8(3 * dist / 2 + time, val); }
2021-05-11 13:41:06 +10:00
2021-05-29 13:53:10 -07:00
bool CYCLE_OUT_IN(effect_params_t* params) { return effect_runner_dx_dy_dist(params, &CYCLE_OUT_IN_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_OUT_IN