diff options
| author | Ryan Caltabiano <rcalt2vt@gmail.com> | 2019-05-19 08:34:25 -0500 |
|---|---|---|
| committer | Drashna Jaelre <drashna@live.com> | 2019-05-19 15:23:01 -0700 |
| commit | c9a7161d934979770792ff1e91ccfcc3508d240b (patch) | |
| tree | 6d31cfad88b4124a0d3e3b10ed2bf4c404cf7064 /quantum/rgb_matrix_runners/effect_runner_reactive.h | |
| parent | e7af23788fbcff8e5bea896b458fb8da1639e66d (diff) | |
| download | qmk_firmware-c9a7161d934979770792ff1e91ccfcc3508d240b.tar.gz qmk_firmware-c9a7161d934979770792ff1e91ccfcc3508d240b.zip | |
Reduce rgb matrix firmware size
Diffstat (limited to 'quantum/rgb_matrix_runners/effect_runner_reactive.h')
| -rw-r--r-- | quantum/rgb_matrix_runners/effect_runner_reactive.h | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/quantum/rgb_matrix_runners/effect_runner_reactive.h b/quantum/rgb_matrix_runners/effect_runner_reactive.h new file mode 100644 index 000000000..94cd7d545 --- /dev/null +++ b/quantum/rgb_matrix_runners/effect_runner_reactive.h | |||
| @@ -0,0 +1,31 @@ | |||
| 1 | #pragma once | ||
| 2 | |||
| 3 | #ifdef RGB_MATRIX_KEYREACTIVE_ENABLED | ||
| 4 | |||
| 5 | typedef void (*reactive_f)(HSV* hsv, uint16_t offset); | ||
| 6 | |||
| 7 | bool effect_runner_reactive(effect_params_t* params, reactive_f effect_func) { | ||
| 8 | RGB_MATRIX_USE_LIMITS(led_min, led_max); | ||
| 9 | |||
| 10 | HSV hsv = { rgb_matrix_config.hue, rgb_matrix_config.sat, rgb_matrix_config.val }; | ||
| 11 | uint16_t max_tick = 65535 / rgb_matrix_config.speed; | ||
| 12 | for (uint8_t i = led_min; i < led_max; i++) { | ||
| 13 | RGB_MATRIX_TEST_LED_FLAGS(); | ||
| 14 | uint16_t tick = max_tick; | ||
| 15 | // Reverse search to find most recent key hit | ||
| 16 | for (int8_t j = g_last_hit_tracker.count - 1; j >= 0; j--) { | ||
| 17 | if (g_last_hit_tracker.index[j] == i && g_last_hit_tracker.tick[j] < tick) { | ||
| 18 | tick = g_last_hit_tracker.tick[j]; | ||
| 19 | break; | ||
| 20 | } | ||
| 21 | } | ||
| 22 | |||
| 23 | uint16_t offset = scale16by8(tick, rgb_matrix_config.speed); | ||
| 24 | effect_func(&hsv, offset); | ||
| 25 | RGB rgb = hsv_to_rgb(hsv); | ||
| 26 | rgb_matrix_set_color(i, rgb.r, rgb.g, rgb.b); | ||
| 27 | } | ||
| 28 | return led_max < DRIVER_LED_TOTAL; | ||
| 29 | } | ||
| 30 | |||
| 31 | #endif // RGB_MATRIX_KEYREACTIVE_ENABLED | ||
