summaryrefslogtreecommitdiff
path: root/keyboards/planck/keymaps/buffet/rgb_matrix_user.inc
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/planck/keymaps/buffet/rgb_matrix_user.inc')
-rw-r--r--keyboards/planck/keymaps/buffet/rgb_matrix_user.inc18
1 files changed, 0 insertions, 18 deletions
diff --git a/keyboards/planck/keymaps/buffet/rgb_matrix_user.inc b/keyboards/planck/keymaps/buffet/rgb_matrix_user.inc
deleted file mode 100644
index e217d1010a..0000000000
--- a/keyboards/planck/keymaps/buffet/rgb_matrix_user.inc
+++ /dev/null
@@ -1,18 +0,0 @@
-RGB_MATRIX_EFFECT(rainbow_stripe)
-
-#ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
-
-static HSV rainbow_stripe_math(HSV hsv, uint8_t i, uint8_t time) {
- if (i >= 14 && i <= 21) {
- hsv.h = g_led_config.point[i].x - time;
- } else {
- hsv.v = 0;
- }
- return hsv;
-}
-
-bool rainbow_stripe(effect_params_t* params) {
- return effect_runner_i(params, &rainbow_stripe_math);
-}
-
-#endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS