aboutsummaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix_animations/gradient_up_down_anim.h
diff options
context:
space:
mode:
Diffstat (limited to 'quantum/rgb_matrix_animations/gradient_up_down_anim.h')
-rw-r--r--quantum/rgb_matrix_animations/gradient_up_down_anim.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/quantum/rgb_matrix_animations/gradient_up_down_anim.h b/quantum/rgb_matrix_animations/gradient_up_down_anim.h
new file mode 100644
index 000000000..11498e22f
--- /dev/null
+++ b/quantum/rgb_matrix_animations/gradient_up_down_anim.h
@@ -0,0 +1,22 @@
1#pragma once
2#ifndef DISABLE_RGB_MATRIX_GRADIENT_UP_DOWN
3
4extern const rgb_led g_rgb_leds[DRIVER_LED_TOTAL];
5extern rgb_config_t rgb_matrix_config;
6
7bool rgb_matrix_gradient_up_down(effect_params_t* params) {
8 RGB_MATRIX_USE_LIMITS(led_min, led_max);
9
10 HSV hsv = { 0, rgb_matrix_config.sat, rgb_matrix_config.val };
11 uint8_t scale = scale8(64, rgb_matrix_config.speed);
12 for (uint8_t i = led_min; i < led_max; i++) {
13 point_t point = g_rgb_leds[i].point;
14 // The y range will be 0..64, map this to 0..4
15 // Relies on hue being 8-bit and wrapping
16 hsv.h = rgb_matrix_config.hue + scale * (point.y >> 4);
17 RGB rgb = hsv_to_rgb(hsv);
18 rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
19 }
20 return led_max < DRIVER_LED_TOTAL;
21}
22#endif // DISABLE_RGB_MATRIX_GRADIENT_UP_DOWN