summaryrefslogtreecommitdiff
path: root/quantum/rgb_matrix/animations/riverflow_anim.h
diff options
context:
space:
mode:
authordb <108231591+bactaholic@users.noreply.github.com>2023-11-26 05:07:32 -0700
committerGitHub <noreply@github.com>2023-11-26 23:07:32 +1100
commit65b5969ed56e0e7fe033400bef374de1c4dbb663 (patch)
tree49ac02568ae89768c842512e0c10126c0d5f7243 /quantum/rgb_matrix/animations/riverflow_anim.h
parentf96a7bbd6304410e15fa6fc744a9b0fa660f1eeb (diff)
New RGB Animations - 4 "Starlight" Animation Variations (#22212)
Diffstat (limited to 'quantum/rgb_matrix/animations/riverflow_anim.h')
-rw-r--r--quantum/rgb_matrix/animations/riverflow_anim.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/quantum/rgb_matrix/animations/riverflow_anim.h b/quantum/rgb_matrix/animations/riverflow_anim.h
new file mode 100644
index 0000000000..79a38e7f6e
--- /dev/null
+++ b/quantum/rgb_matrix/animations/riverflow_anim.h
@@ -0,0 +1,22 @@
+#ifdef ENABLE_RGB_MATRIX_RIVERFLOW
+RGB_MATRIX_EFFECT(RIVERFLOW)
+# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
+
+// inspired by @PleasureTek's Massdrop Alt LED animation
+
+bool RIVERFLOW(effect_params_t* params) {
+ RGB_MATRIX_USE_LIMITS(led_min, led_max);
+ for (uint8_t i = led_min; i < led_max; i++) {
+ HSV hsv = rgb_matrix_config.hsv;
+ uint16_t time = scale16by8(g_rgb_timer + (i * 315), rgb_matrix_config.speed / 8);
+ hsv.v = scale8(abs8(sin8(time) - 128) * 2, hsv.v);
+ RGB rgb = rgb_matrix_hsv_to_rgb(hsv);
+ RGB_MATRIX_TEST_LED_FLAGS();
+ rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
+ }
+
+ return rgb_matrix_check_finished_leds(led_max);
+}
+
+# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS
+#endif // ENABLE_RGB_MATRIX_RIVERFLOW