From a3cd1290be8187a34e3c4e156c07531380bfecaa Mon Sep 17 00:00:00 2001 From: TurtleHunter <48608128+TurtleHunter@users.noreply.github.com> Date: Sat, 3 Apr 2021 10:41:54 -0400 Subject: 3 new LED effect animations (#9827) Co-authored-by: Joel Challis Co-authored-by: Ryan Co-authored-by: Erovia --- quantum/rgb_matrix_animations/hue_breathing_anim.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 quantum/rgb_matrix_animations/hue_breathing_anim.h (limited to 'quantum/rgb_matrix_animations/hue_breathing_anim.h') diff --git a/quantum/rgb_matrix_animations/hue_breathing_anim.h b/quantum/rgb_matrix_animations/hue_breathing_anim.h new file mode 100644 index 0000000000..37a6293c70 --- /dev/null +++ b/quantum/rgb_matrix_animations/hue_breathing_anim.h @@ -0,0 +1,22 @@ +#ifndef DISABLE_RGB_MATRIX_HUE_BREATHING +RGB_MATRIX_EFFECT(HUE_BREATHING) +# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS + +// Change huedelta to adjust range of hue change. 0-255. +// Hue Breathing - All LED's light up +bool HUE_BREATHING(effect_params_t* params) { + RGB_MATRIX_USE_LIMITS(led_min, led_max); + uint8_t huedelta = 12; + HSV hsv = rgb_matrix_config.hsv; + uint16_t time = scale16by8(g_rgb_timer, rgb_matrix_config.speed / 8); + hsv.h = hsv.h + scale8(abs8(sin8(time) - 128) * 2, huedelta); + RGB rgb = hsv_to_rgb(hsv); + for (uint8_t i = led_min; i < led_max; i++) { + RGB_MATRIX_TEST_LED_FLAGS(); + rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b); + } + return led_max < DRIVER_LED_TOTAL; +} + +# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS +#endif // DISABLE_RGB_HUE_BREATHING -- cgit v1.2.3