diff options
Diffstat (limited to 'quantum/rgb_matrix_animations/breathing_anim.h')
| -rw-r--r-- | quantum/rgb_matrix_animations/breathing_anim.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/rgb_matrix_animations/breathing_anim.h b/quantum/rgb_matrix_animations/breathing_anim.h index c357b5303..0af7b42cf 100644 --- a/quantum/rgb_matrix_animations/breathing_anim.h +++ b/quantum/rgb_matrix_animations/breathing_anim.h | |||
| @@ -5,9 +5,9 @@ RGB_MATRIX_EFFECT(BREATHING) | |||
| 5 | bool BREATHING(effect_params_t* params) { | 5 | bool BREATHING(effect_params_t* params) { |
| 6 | RGB_MATRIX_USE_LIMITS(led_min, led_max); | 6 | RGB_MATRIX_USE_LIMITS(led_min, led_max); |
| 7 | 7 | ||
| 8 | HSV hsv = rgb_matrix_config.hsv; | ||
| 8 | uint16_t time = scale16by8(g_rgb_counters.tick, rgb_matrix_config.speed / 8); | 9 | uint16_t time = scale16by8(g_rgb_counters.tick, rgb_matrix_config.speed / 8); |
| 9 | uint8_t val = scale8(abs8(sin8(time) - 128) * 2, rgb_matrix_config.val); | 10 | hsv.v = scale8(abs8(sin8(time) - 128) * 2, hsv.v); |
| 10 | HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, val }; | ||
| 11 | RGB rgb = hsv_to_rgb(hsv); | 11 | RGB rgb = hsv_to_rgb(hsv); |
| 12 | for (uint8_t i = led_min; i < led_max; i++) { | 12 | for (uint8_t i = led_min; i < led_max; i++) { |
| 13 | RGB_MATRIX_TEST_LED_FLAGS(); | 13 | RGB_MATRIX_TEST_LED_FLAGS(); |
