summaryrefslogtreecommitdiff
path: root/quantum/led_matrix
diff options
context:
space:
mode:
authorフィルターペーパー <76888457+filterpaper@users.noreply.github.com>2024-10-29 01:56:54 +0800
committerGitHub <noreply@github.com>2024-10-28 10:56:54 -0700
commit06b7dce565500e7e1cfdd0803239dff430101b8b (patch)
tree0786bc0f4d9005f308a4c895e26a24332efbf7fd /quantum/led_matrix
parent95406717e7834c7fedfe9e28560ce118485b2d3f (diff)
Refactor LED Breathing effect with runner (#24540)
Diffstat (limited to 'quantum/led_matrix')
-rw-r--r--quantum/led_matrix/animations/breathing_anim.h15
1 files changed, 5 insertions, 10 deletions
diff --git a/quantum/led_matrix/animations/breathing_anim.h b/quantum/led_matrix/animations/breathing_anim.h
index 0bd4cb0cc3..3d1b0d95d2 100644
--- a/quantum/led_matrix/animations/breathing_anim.h
+++ b/quantum/led_matrix/animations/breathing_anim.h
@@ -2,17 +2,12 @@
2LED_MATRIX_EFFECT(BREATHING) 2LED_MATRIX_EFFECT(BREATHING)
3# ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS 3# ifdef LED_MATRIX_CUSTOM_EFFECT_IMPLS
4 4
5bool BREATHING(effect_params_t* params) { 5static uint8_t BREATHING_math(uint8_t val, uint8_t i, uint8_t time) {
6 LED_MATRIX_USE_LIMITS(led_min, led_max); 6 return scale8(abs8(sin8(time / 2) - 128) * 2, val);
7}
7 8
8 uint8_t val = led_matrix_eeconfig.val; 9bool BREATHING(effect_params_t* params) {
9 uint16_t time = scale16by8(g_led_timer, led_matrix_eeconfig.speed / 8); 10 return effect_runner_i(params, &BREATHING_math);
10 val = scale8(abs8(sin8(time) - 128) * 2, val);
11 for (uint8_t i = led_min; i < led_max; i++) {
12 LED_MATRIX_TEST_LED_FLAGS();
13 led_matrix_set_value(i, val);
14 }
15 return led_matrix_check_finished_leds(led_max);
16} 11}
17 12
18# endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS 13# endif // LED_MATRIX_CUSTOM_EFFECT_IMPLS