diff options
Diffstat (limited to 'quantum/led_matrix_animations/band_pinwheel_anim.h')
| -rw-r--r-- | quantum/led_matrix_animations/band_pinwheel_anim.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/led_matrix_animations/band_pinwheel_anim.h b/quantum/led_matrix_animations/band_pinwheel_anim.h new file mode 100644 index 000000000..fb3b835ca --- /dev/null +++ b/quantum/led_matrix_animations/band_pinwheel_anim.h | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | #ifndef DISABLE_LED_MATRIX_BAND_PINWHEEL | ||
| 2 | LED_MATRIX_EFFECT(BAND_PINWHEEL) | ||
| 3 | # ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS | ||
| 4 | |||
| 5 | static uint8_t BAND_PINWHEEL_math(uint8_t val, int16_t dx, int16_t dy, uint8_t time) { return scale8(val - time - atan2_8(dy, dx) * 3, val); } | ||
| 6 | |||
| 7 | bool BAND_PINWHEEL(effect_params_t* params) { return effect_runner_dx_dy(params, &BAND_PINWHEEL_math); } | ||
| 8 | |||
| 9 | # endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS | ||
| 10 | #endif // DISABLE_LED_MATRIX_BAND_PINWHEEL | ||
