diff options
author | vin <git@vineetk.net> | 2024-01-15 19:40:26 -0500 |
---|---|---|
committer | vin <git@vineetk.net> | 2024-01-15 19:41:32 -0500 |
commit | a2c86b4053386fbc9a70674802c1157375b10066 (patch) | |
tree | cda5faee0c8c2298a0be47b8c1961bf16df595c9 /quantum/rgb_matrix/animations/pixel_rain_anim.h | |
parent | e33ae91091e425699f0cdfd4483023b07ec3ed5e (diff) |
remove rgb support
Diffstat (limited to 'quantum/rgb_matrix/animations/pixel_rain_anim.h')
-rw-r--r-- | quantum/rgb_matrix/animations/pixel_rain_anim.h | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/quantum/rgb_matrix/animations/pixel_rain_anim.h b/quantum/rgb_matrix/animations/pixel_rain_anim.h deleted file mode 100644 index 26cd73b578..0000000000 --- a/quantum/rgb_matrix/animations/pixel_rain_anim.h +++ /dev/null @@ -1,33 +0,0 @@ -// Copyright 2022 @filterpaper -// SPDX-License-Identifier: GPL-2.0+ - -#ifdef ENABLE_RGB_MATRIX_PIXEL_RAIN -RGB_MATRIX_EFFECT(PIXEL_RAIN) -# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS - -static bool PIXEL_RAIN(effect_params_t* params) { - static uint32_t wait_timer = 0; - - inline uint32_t interval(void) { - return 500 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); - } - - inline void rain_pixel(uint8_t led_index) { - if (!HAS_ANY_FLAGS(g_led_config.flags[led_index], params->flags)) { - return; - } - HSV hsv = (random8() & 2) ? (HSV){0, 0, 0} : (HSV){random8(), random8_min_max(127, 255), rgb_matrix_config.hsv.v}; - RGB rgb = rgb_matrix_hsv_to_rgb(hsv); - rgb_matrix_set_color(led_index, rgb.r, rgb.g, rgb.b); - wait_timer = g_rgb_timer + interval(); - } - - RGB_MATRIX_USE_LIMITS(led_min, led_max); - if (g_rgb_timer > wait_timer) { - rain_pixel(random8_max(RGB_MATRIX_LED_COUNT)); - } - return rgb_matrix_check_finished_leds(led_max); -} - -# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS -#endif // ENABLE_RGB_MATRIX_PIXEL_RAIN |