]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/rgb_matrix_animations/solid_reactive_simple_anim.h
rgb_led struct conversion (aka: Per led (key) type rgb matrix effects - part 2) ...
[qmk_firmware.git] / quantum / rgb_matrix_animations / solid_reactive_simple_anim.h
1 #pragma once
2 #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
3 #ifndef DISABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
4
5 extern led_config_t g_led_config;
6 extern rgb_config_t rgb_matrix_config;
7 extern last_hit_t g_last_hit_tracker;
8
9 bool rgb_matrix_solid_reactive_simple(effect_params_t* params) {
10   RGB_MATRIX_USE_LIMITS(led_min, led_max);
11
12   HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, 0 };
13   // Max tick based on speed scale ensures results from scale16by8 with rgb_matrix_config.speed are no greater than 255
14   uint16_t max_tick = 65535 / rgb_matrix_config.speed;
15   for (uint8_t i = led_min; i < led_max; i++) {
16     RGB_MATRIX_TEST_LED_FLAGS();
17     uint16_t tick = max_tick;
18     // Reverse search to find most recent key hit
19     for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) {
20       if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) {
21         tick = g_last_hit_tracker.tick[j];
22         break;
23       }
24     }
25
26     uint16_t  offset = scale16by8(tick, rgb_matrix_config.speed);
27     hsv.v = scale8(255 - offset, rgb_matrix_config.val);
28     RGB rgb = hsv_to_rgb(hsv);
29     rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b);
30   }
31   return led_max < DRIVER_LED_TOTAL;
32 }
33
34 #endif // DISABLE_RGB_MATRIX_SOLID_REACTIVE_SIMPLE
35 #endif // RGB_MATRIX_KEYREACTIVE_ENABLED