forked from qmk/qmk_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Core] Add Pixel Flow RGB matrix effect (qmk#15829)
* Initial PIXEL FLOW matrix effect commit * Commit suggested use of rgb_matrix_check_finished_leds Co-authored-by: Sergey Vlasov <[email protected]> * Code change support for split RGB Co-authored-by: Sergey Vlasov <[email protected]>
- Loading branch information
1 parent
98916fd
commit e8fa329
Showing
4 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
// Copyright 2022 @filterpaper | ||
// SPDX-License-Identifier: GPL-2.0+ | ||
|
||
#ifdef ENABLE_RGB_MATRIX_PIXEL_FLOW | ||
RGB_MATRIX_EFFECT(PIXEL_FLOW) | ||
# ifdef RGB_MATRIX_CUSTOM_EFFECT_IMPLS | ||
|
||
static bool PIXEL_FLOW(effect_params_t* params) { | ||
// LED state array | ||
static RGB led[DRIVER_LED_TOTAL]; | ||
|
||
static uint32_t wait_timer = 0; | ||
if (wait_timer > g_rgb_timer) { | ||
return false; | ||
} | ||
|
||
inline uint32_t interval(void) { | ||
return 3000 / scale16by8(qadd8(rgb_matrix_config.speed, 16), 16); | ||
} | ||
|
||
if (params->init) { | ||
// Clear LEDs and fill the state array | ||
rgb_matrix_set_color_all(0, 0, 0); | ||
for (uint8_t j = 0; j < DRIVER_LED_TOTAL; ++j) { | ||
led[j] = (random8() & 2) ? (RGB){0,0,0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); | ||
} | ||
} | ||
|
||
RGB_MATRIX_USE_LIMITS(led_min, led_max); | ||
// Light LEDs based on state array | ||
for (uint8_t i = led_min; i < led_max; ++i) { | ||
RGB_MATRIX_TEST_LED_FLAGS(); | ||
rgb_matrix_set_color(i, led[i].r, led[i].g, led[i].b); | ||
} | ||
|
||
if (!rgb_matrix_check_finished_leds(led_max)) { | ||
// Shift LED state forward | ||
for (uint8_t j = 0; j < led_max-1; ++j) { | ||
led[j] = led[j+1]; | ||
} | ||
// Fill last LED | ||
led[led_max-1] = (random8() & 2) ? (RGB){0,0,0} : hsv_to_rgb((HSV){random8(), qadd8(random8() >> 1, 127), rgb_matrix_config.hsv.v}); | ||
// Set pulse timer | ||
wait_timer = g_rgb_timer + interval(); | ||
} | ||
|
||
return rgb_matrix_check_finished_leds(led_max); | ||
} | ||
|
||
# endif // RGB_MATRIX_CUSTOM_EFFECT_IMPLS | ||
#endif // ENABLE_RGB_MATRIX_PIXEL_FLOW |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters