VIA Configurator Refactor (#7268)
[jackhill/qmk/firmware.git] / quantum / rgb_matrix.c
CommitLineData
14b7602a
JH
1/* Copyright 2017 Jason Williams
2 * Copyright 2017 Jack Humbert
fdd0f915 3 * Copyright 2018 Yiancar
14b7602a
JH
4 *
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18
14b7602a 19#include "rgb_matrix.h"
14b7602a
JH
20#include "progmem.h"
21#include "config.h"
22#include "eeprom.h"
b382076a 23#include <string.h>
14b7602a
JH
24#include <math.h>
25
c98247e3
X
26#include "lib/lib8tion/lib8tion.h"
27
5c7b37bb 28#ifndef RGB_MATRIX_CENTER
b624f32f 29const point_t k_rgb_matrix_center = {112, 32};
5c7b37bb 30#else
b624f32f 31const point_t k_rgb_matrix_center = RGB_MATRIX_CENTER;
5c7b37bb
RC
32#endif
33
c9a7161d
RC
34// Generic effect runners
35#include "rgb_matrix_runners/effect_runner_dx_dy_dist.h"
36#include "rgb_matrix_runners/effect_runner_dx_dy.h"
37#include "rgb_matrix_runners/effect_runner_i.h"
38#include "rgb_matrix_runners/effect_runner_sin_cos_i.h"
39#include "rgb_matrix_runners/effect_runner_reactive.h"
40#include "rgb_matrix_runners/effect_runner_reactive_splash.h"
41
62ba66d6
X
42// ------------------------------------------
43// -----Begin rgb effect includes macros-----
44#define RGB_MATRIX_EFFECT(name)
45#define RGB_MATRIX_CUSTOM_EFFECT_IMPLS
14b7602a 46
62ba66d6
X
47#include "rgb_matrix_animations/rgb_matrix_effects.inc"
48#ifdef RGB_MATRIX_CUSTOM_KB
b624f32f 49# include "rgb_matrix_kb.inc"
1d784f0f 50#endif
62ba66d6 51#ifdef RGB_MATRIX_CUSTOM_USER
b624f32f 52# include "rgb_matrix_user.inc"
62ba66d6
X
53#endif
54
55#undef RGB_MATRIX_CUSTOM_EFFECT_IMPLS
56#undef RGB_MATRIX_EFFECT
57// -----End rgb effect includes macros-------
58// ------------------------------------------
1d784f0f 59
c98247e3 60#ifndef RGB_DISABLE_AFTER_TIMEOUT
b624f32f 61# define RGB_DISABLE_AFTER_TIMEOUT 0
fdd0f915 62#endif
63
c98247e3 64#ifndef RGB_DISABLE_WHEN_USB_SUSPENDED
b624f32f 65# define RGB_DISABLE_WHEN_USB_SUSPENDED false
fdd0f915 66#endif
67
c98247e3 68#if !defined(RGB_MATRIX_MAXIMUM_BRIGHTNESS) || RGB_MATRIX_MAXIMUM_BRIGHTNESS > UINT8_MAX
b624f32f 69# undef RGB_MATRIX_MAXIMUM_BRIGHTNESS
70# define RGB_MATRIX_MAXIMUM_BRIGHTNESS UINT8_MAX
14b7602a
JH
71#endif
72
c98247e3 73#if !defined(RGB_MATRIX_HUE_STEP)
b624f32f 74# define RGB_MATRIX_HUE_STEP 8
14b7602a
JH
75#endif
76
c98247e3 77#if !defined(RGB_MATRIX_SAT_STEP)
b624f32f 78# define RGB_MATRIX_SAT_STEP 16
a7df9027 79#endif
80
c98247e3 81#if !defined(RGB_MATRIX_VAL_STEP)
b624f32f 82# define RGB_MATRIX_VAL_STEP 16
da6c5817
DS
83#endif
84
c98247e3 85#if !defined(RGB_MATRIX_SPD_STEP)
b624f32f 86# define RGB_MATRIX_SPD_STEP 16
504bf117
FD
87#endif
88
1d784f0f 89#if !defined(RGB_MATRIX_STARTUP_MODE)
b624f32f 90# ifndef DISABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
91# define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_CYCLE_LEFT_RIGHT
92# else
93// fallback to solid colors if RGB_MATRIX_CYCLE_LEFT_RIGHT is disabled in userspace
94# define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_SOLID_COLOR
95# endif
1d784f0f
DP
96#endif
97
14b7602a
JH
98bool g_suspend_state = false;
99
c98247e3 100rgb_config_t rgb_matrix_config;
14b7602a 101
b624f32f 102rgb_counters_t g_rgb_counters;
c98247e3 103static uint32_t rgb_counters_buffer;
14b7602a 104
60eae733
X
105#ifdef RGB_MATRIX_FRAMEBUFFER_EFFECTS
106uint8_t rgb_frame_buffer[MATRIX_ROWS][MATRIX_COLS] = {{0}};
107#endif
108
c98247e3 109#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
b624f32f 110last_hit_t g_last_hit_tracker;
111static last_hit_t last_hit_buffer;
112#endif // RGB_MATRIX_KEYREACTIVE_ENABLED
14b7602a 113
b624f32f 114void eeconfig_read_rgb_matrix(void) { eeprom_read_block(&rgb_matrix_config, EECONFIG_RGB_MATRIX, sizeof(rgb_matrix_config)); }
c98247e3 115
b624f32f 116void eeconfig_update_rgb_matrix(void) { eeprom_update_block(&rgb_matrix_config, EECONFIG_RGB_MATRIX, sizeof(rgb_matrix_config)); }
c98247e3 117
14b7602a 118void eeconfig_update_rgb_matrix_default(void) {
b624f32f 119 dprintf("eeconfig_update_rgb_matrix_default\n");
120 rgb_matrix_config.enable = 1;
121 rgb_matrix_config.mode = RGB_MATRIX_STARTUP_MODE;
122 rgb_matrix_config.hsv = (HSV){0, UINT8_MAX, RGB_MATRIX_MAXIMUM_BRIGHTNESS};
123 rgb_matrix_config.speed = UINT8_MAX / 2;
124 eeconfig_update_rgb_matrix();
14b7602a 125}
c98247e3 126
14b7602a 127void eeconfig_debug_rgb_matrix(void) {
b624f32f 128 dprintf("rgb_matrix_config eprom\n");
129 dprintf("rgb_matrix_config.enable = %d\n", rgb_matrix_config.enable);
130 dprintf("rgb_matrix_config.mode = %d\n", rgb_matrix_config.mode);
131 dprintf("rgb_matrix_config.hsv.h = %d\n", rgb_matrix_config.hsv.h);
132 dprintf("rgb_matrix_config.hsv.s = %d\n", rgb_matrix_config.hsv.s);
133 dprintf("rgb_matrix_config.hsv.v = %d\n", rgb_matrix_config.hsv.v);
134 dprintf("rgb_matrix_config.speed = %d\n", rgb_matrix_config.speed);
14b7602a
JH
135}
136
b624f32f 137__attribute__((weak)) uint8_t rgb_matrix_map_row_column_to_led_kb(uint8_t row, uint8_t column, uint8_t *led_i) { return 0; }
bb208f3e 138
c98247e3 139uint8_t rgb_matrix_map_row_column_to_led(uint8_t row, uint8_t column, uint8_t *led_i) {
b624f32f 140 uint8_t led_count = rgb_matrix_map_row_column_to_led_kb(row, column, led_i);
141 uint8_t led_index = g_led_config.matrix_co[row][column];
142 if (led_index != NO_LED) {
143 led_i[led_count] = led_index;
144 led_count++;
145 }
146 return led_count;
14b7602a
JH
147}
148
b624f32f 149void rgb_matrix_update_pwm_buffers(void) { rgb_matrix_driver.flush(); }
14b7602a 150
b624f32f 151void rgb_matrix_set_color(int index, uint8_t red, uint8_t green, uint8_t blue) { rgb_matrix_driver.set_color(index, red, green, blue); }
14b7602a 152
b624f32f 153void rgb_matrix_set_color_all(uint8_t red, uint8_t green, uint8_t blue) { rgb_matrix_driver.set_color_all(red, green, blue); }
14b7602a 154
14b7602a 155bool process_rgb_matrix(uint16_t keycode, keyrecord_t *record) {
c98247e3 156#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
b624f32f 157 uint8_t led[LED_HITS_TO_REMEMBER];
158 uint8_t led_count = 0;
159
160# if defined(RGB_MATRIX_KEYRELEASES)
161 if (!record->event.pressed) {
162 led_count = rgb_matrix_map_row_column_to_led(record->event.key.row, record->event.key.col, led);
163 g_rgb_counters.any_key_hit = 0;
164 }
165# elif defined(RGB_MATRIX_KEYPRESSES)
166 if (record->event.pressed) {
167 led_count = rgb_matrix_map_row_column_to_led(record->event.key.row, record->event.key.col, led);
168 g_rgb_counters.any_key_hit = 0;
169 }
170# endif // defined(RGB_MATRIX_KEYRELEASES)
171
172 if (last_hit_buffer.count + led_count > LED_HITS_TO_REMEMBER) {
173 memcpy(&last_hit_buffer.x[0], &last_hit_buffer.x[led_count], LED_HITS_TO_REMEMBER - led_count);
174 memcpy(&last_hit_buffer.y[0], &last_hit_buffer.y[led_count], LED_HITS_TO_REMEMBER - led_count);
175 memcpy(&last_hit_buffer.tick[0], &last_hit_buffer.tick[led_count], (LED_HITS_TO_REMEMBER - led_count) * 2); // 16 bit
176 memcpy(&last_hit_buffer.index[0], &last_hit_buffer.index[led_count], LED_HITS_TO_REMEMBER - led_count);
177 last_hit_buffer.count--;
178 }
179
180 for (uint8_t i = 0; i < led_count; i++) {
181 uint8_t index = last_hit_buffer.count;
182 last_hit_buffer.x[index] = g_led_config.point[led[i]].x;
183 last_hit_buffer.y[index] = g_led_config.point[led[i]].y;
184 last_hit_buffer.index[index] = led[i];
185 last_hit_buffer.tick[index] = 0;
186 last_hit_buffer.count++;
187 }
188#endif // RGB_MATRIX_KEYREACTIVE_ENABLED
60eae733
X
189
190#if defined(RGB_MATRIX_FRAMEBUFFER_EFFECTS) && !defined(DISABLE_RGB_MATRIX_TYPING_HEATMAP)
b624f32f 191 if (rgb_matrix_config.mode == RGB_MATRIX_TYPING_HEATMAP) {
192 process_rgb_matrix_typing_heatmap(record);
193 }
194#endif // defined(RGB_MATRIX_FRAMEBUFFER_EFFECTS) && !defined(DISABLE_RGB_MATRIX_TYPING_HEATMAP)
60eae733 195
b624f32f 196 return true;
14b7602a
JH
197}
198
199void rgb_matrix_test(void) {
b624f32f 200 // Mask out bits 4 and 5
201 // Increase the factor to make the test animation slower (and reduce to make it faster)
202 uint8_t factor = 10;
203 switch ((g_rgb_counters.tick & (0b11 << factor)) >> factor) {
204 case 0: {
205 rgb_matrix_set_color_all(20, 0, 0);
206 break;
207 }
208 case 1: {
209 rgb_matrix_set_color_all(0, 20, 0);
210 break;
211 }
212 case 2: {
213 rgb_matrix_set_color_all(0, 0, 20);
214 break;
215 }
216 case 3: {
217 rgb_matrix_set_color_all(20, 20, 20);
218 break;
219 }
14b7602a 220 }
14b7602a
JH
221}
222
b624f32f 223static bool rgb_matrix_none(effect_params_t *params) {
224 if (!params->init) {
225 return false;
226 }
14b7602a 227
b624f32f 228 RGB_MATRIX_USE_LIMITS(led_min, led_max);
229 for (uint8_t i = led_min; i < led_max; i++) {
230 rgb_matrix_set_color(i, 0, 0, 0);
231 }
232 return led_max < DRIVER_LED_TOTAL;
14b7602a
JH
233}
234
b624f32f 235static uint8_t rgb_last_enable = UINT8_MAX;
236static uint8_t rgb_last_effect = UINT8_MAX;
237static effect_params_t rgb_effect_params = {0, 0xFF};
238static rgb_task_states rgb_task_state = SYNCING;
14b7602a 239
c98247e3 240static void rgb_task_timers(void) {
b624f32f 241 // Update double buffer timers
242 uint16_t deltaTime = timer_elapsed32(rgb_counters_buffer);
243 rgb_counters_buffer = timer_read32();
244 if (g_rgb_counters.any_key_hit < UINT32_MAX) {
245 if (UINT32_MAX - deltaTime < g_rgb_counters.any_key_hit) {
246 g_rgb_counters.any_key_hit = UINT32_MAX;
247 } else {
248 g_rgb_counters.any_key_hit += deltaTime;
249 }
14b7602a 250 }
14b7602a 251
b624f32f 252 // Update double buffer last hit timers
c98247e3 253#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
b624f32f 254 uint8_t count = last_hit_buffer.count;
255 for (uint8_t i = 0; i < count; ++i) {
256 if (UINT16_MAX - deltaTime < last_hit_buffer.tick[i]) {
257 last_hit_buffer.count--;
258 continue;
259 }
260 last_hit_buffer.tick[i] += deltaTime;
14b7602a 261 }
b624f32f 262#endif // RGB_MATRIX_KEYREACTIVE_ENABLED
c98247e3
X
263}
264
265static void rgb_task_sync(void) {
b624f32f 266 // next task
267 if (timer_elapsed32(g_rgb_counters.tick) >= RGB_MATRIX_LED_FLUSH_LIMIT) rgb_task_state = STARTING;
c98247e3
X
268}
269
270static void rgb_task_start(void) {
b624f32f 271 // reset iter
272 rgb_effect_params.iter = 0;
c98247e3 273
b624f32f 274 // update double buffers
275 g_rgb_counters.tick = rgb_counters_buffer;
c98247e3 276#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
b624f32f 277 g_last_hit_tracker = last_hit_buffer;
278#endif // RGB_MATRIX_KEYREACTIVE_ENABLED
c98247e3 279
b624f32f 280 // next task
281 rgb_task_state = RENDERING;
c98247e3
X
282}
283
284static void rgb_task_render(uint8_t effect) {
b624f32f 285 bool rendering = false;
286 rgb_effect_params.init = (effect != rgb_last_effect) || (rgb_matrix_config.enable != rgb_last_enable);
c98247e3 287
b624f32f 288 // each effect can opt to do calculations
289 // and/or request PWM buffer updates.
290 switch (effect) {
291 case RGB_MATRIX_NONE:
292 rendering = rgb_matrix_none(&rgb_effect_params);
293 break;
c98247e3 294
62ba66d6
X
295// ---------------------------------------------
296// -----Begin rgb effect switch case macros-----
b624f32f 297#define RGB_MATRIX_EFFECT(name, ...) \
298 case RGB_MATRIX_##name: \
299 rendering = name(&rgb_effect_params); \
300 break;
62ba66d6
X
301#include "rgb_matrix_animations/rgb_matrix_effects.inc"
302#undef RGB_MATRIX_EFFECT
14b7602a 303
1d784f0f 304#if defined(RGB_MATRIX_CUSTOM_KB) || defined(RGB_MATRIX_CUSTOM_USER)
b624f32f 305# define RGB_MATRIX_EFFECT(name, ...) \
306 case RGB_MATRIX_CUSTOM_##name: \
307 rendering = name(&rgb_effect_params); \
308 break;
309# ifdef RGB_MATRIX_CUSTOM_KB
310# include "rgb_matrix_kb.inc"
311# endif
312# ifdef RGB_MATRIX_CUSTOM_USER
313# include "rgb_matrix_user.inc"
314# endif
315# undef RGB_MATRIX_EFFECT
1d784f0f 316#endif
b624f32f 317 // -----End rgb effect switch case macros-------
318 // ---------------------------------------------
319
320 // Factory default magic value
321 case UINT8_MAX: {
322 rgb_matrix_test();
323 rgb_task_state = FLUSHING;
324 }
325 return;
326 }
327
328 rgb_effect_params.iter++;
1d784f0f 329
b624f32f 330 // next task
331 if (!rendering) {
c98247e3 332 rgb_task_state = FLUSHING;
b624f32f 333 if (!rgb_effect_params.init && effect == RGB_MATRIX_NONE) {
334 // We only need to flush once if we are RGB_MATRIX_NONE
335 rgb_task_state = SYNCING;
336 }
14b7602a
JH
337 }
338}
339
c98247e3 340static void rgb_task_flush(uint8_t effect) {
b624f32f 341 // update last trackers after the first full render so we can init over several frames
342 rgb_last_effect = effect;
343 rgb_last_enable = rgb_matrix_config.enable;
4d5705ea 344
b624f32f 345 // update pwm buffers
346 rgb_matrix_update_pwm_buffers();
4d5705ea 347
b624f32f 348 // next task
349 rgb_task_state = SYNCING;
14b7602a
JH
350}
351
352void rgb_matrix_task(void) {
b624f32f 353 rgb_task_timers();
354
355 // Ideally we would also stop sending zeros to the LED driver PWM buffers
356 // while suspended and just do a software shutdown. This is a cheap hack for now.
357 bool suspend_backlight = ((g_suspend_state && RGB_DISABLE_WHEN_USB_SUSPENDED) || (RGB_DISABLE_AFTER_TIMEOUT > 0 && g_rgb_counters.any_key_hit > RGB_DISABLE_AFTER_TIMEOUT * 60 * 20));
358 uint8_t effect = suspend_backlight || !rgb_matrix_config.enable ? 0 : rgb_matrix_config.mode;
359
360 switch (rgb_task_state) {
361 case STARTING:
362 rgb_task_start();
363 break;
364 case RENDERING:
365 rgb_task_render(effect);
366 break;
367 case FLUSHING:
368 rgb_task_flush(effect);
369 break;
370 case SYNCING:
371 rgb_task_sync();
372 break;
373 }
374
375 if (!suspend_backlight) {
376 rgb_matrix_indicators();
377 }
14b7602a
JH
378}
379
380void rgb_matrix_indicators(void) {
b624f32f 381 rgb_matrix_indicators_kb();
382 rgb_matrix_indicators_user();
14b7602a
JH
383}
384
b624f32f 385__attribute__((weak)) void rgb_matrix_indicators_kb(void) {}
14b7602a 386
b624f32f 387__attribute__((weak)) void rgb_matrix_indicators_user(void) {}
14b7602a 388
bad56a4f 389void rgb_matrix_init(void) {
b624f32f 390 rgb_matrix_driver.init();
bad56a4f 391
b624f32f 392 // TODO: put the 1 second startup delay here?
bad56a4f 393
c98247e3 394#ifdef RGB_MATRIX_KEYREACTIVE_ENABLED
b624f32f 395 g_last_hit_tracker.count = 0;
396 for (uint8_t i = 0; i < LED_HITS_TO_REMEMBER; ++i) {
397 g_last_hit_tracker.tick[i] = UINT16_MAX;
398 }
bad56a4f 399
b624f32f 400 last_hit_buffer.count = 0;
401 for (uint8_t i = 0; i < LED_HITS_TO_REMEMBER; ++i) {
402 last_hit_buffer.tick[i] = UINT16_MAX;
403 }
404#endif // RGB_MATRIX_KEYREACTIVE_ENABLED
bad56a4f 405
b624f32f 406 if (!eeconfig_is_enabled()) {
407 dprintf("rgb_matrix_init_drivers eeconfig is not enabled.\n");
408 eeconfig_init();
409 eeconfig_update_rgb_matrix_default();
410 }
c98247e3 411
b624f32f 412 eeconfig_read_rgb_matrix();
413 if (!rgb_matrix_config.mode) {
414 dprintf("rgb_matrix_init_drivers rgb_matrix_config.mode = 0. Write default values to EEPROM.\n");
415 eeconfig_update_rgb_matrix_default();
416 }
417 eeconfig_debug_rgb_matrix(); // display current eeprom values
bad56a4f
JH
418}
419
46e2b6e4
DJ
420void rgb_matrix_set_suspend_state(bool state) {
421 if (RGB_DISABLE_WHEN_USB_SUSPENDED && state) {
422 rgb_matrix_set_color_all(0, 0, 0); // turn off all LEDs when suspending
423 }
424 g_suspend_state = state;
425}
14b7602a 426
da1afe15 427void rgb_matrix_toggle(void) {
b624f32f 428 rgb_matrix_config.enable ^= 1;
429 rgb_task_state = STARTING;
430 eeconfig_update_rgb_matrix();
14b7602a
JH
431}
432
da1afe15 433void rgb_matrix_enable(void) {
b624f32f 434 rgb_matrix_enable_noeeprom();
435 eeconfig_update_rgb_matrix();
da1afe15
DJ
436}
437
438void rgb_matrix_enable_noeeprom(void) {
b624f32f 439 if (!rgb_matrix_config.enable) rgb_task_state = STARTING;
440 rgb_matrix_config.enable = 1;
da1afe15
DJ
441}
442
443void rgb_matrix_disable(void) {
b624f32f 444 rgb_matrix_disable_noeeprom();
445 eeconfig_update_rgb_matrix();
da1afe15
DJ
446}
447
448void rgb_matrix_disable_noeeprom(void) {
b624f32f 449 if (rgb_matrix_config.enable) rgb_task_state = STARTING;
450 rgb_matrix_config.enable = 0;
da1afe15
DJ
451}
452
453void rgb_matrix_step(void) {
b624f32f 454 rgb_matrix_config.mode++;
455 if (rgb_matrix_config.mode >= RGB_MATRIX_EFFECT_MAX) rgb_matrix_config.mode = 1;
456 rgb_task_state = STARTING;
457 eeconfig_update_rgb_matrix();
14b7602a
JH
458}
459
da1afe15 460void rgb_matrix_step_reverse(void) {
b624f32f 461 rgb_matrix_config.mode--;
462 if (rgb_matrix_config.mode < 1) rgb_matrix_config.mode = RGB_MATRIX_EFFECT_MAX - 1;
463 rgb_task_state = STARTING;
464 eeconfig_update_rgb_matrix();
14b7602a
JH
465}
466
da1afe15 467void rgb_matrix_increase_hue(void) {
b624f32f 468 rgb_matrix_config.hsv.h += RGB_MATRIX_HUE_STEP;
469 eeconfig_update_rgb_matrix();
14b7602a
JH
470}
471
da1afe15 472void rgb_matrix_decrease_hue(void) {
b624f32f 473 rgb_matrix_config.hsv.h -= RGB_MATRIX_HUE_STEP;
474 eeconfig_update_rgb_matrix();
14b7602a
JH
475}
476
da1afe15 477void rgb_matrix_increase_sat(void) {
b624f32f 478 rgb_matrix_config.hsv.s = qadd8(rgb_matrix_config.hsv.s, RGB_MATRIX_SAT_STEP);
479 eeconfig_update_rgb_matrix();
14b7602a
JH
480}
481
da1afe15 482void rgb_matrix_decrease_sat(void) {
b624f32f 483 rgb_matrix_config.hsv.s = qsub8(rgb_matrix_config.hsv.s, RGB_MATRIX_SAT_STEP);
484 eeconfig_update_rgb_matrix();
14b7602a
JH
485}
486
da1afe15 487void rgb_matrix_increase_val(void) {
b624f32f 488 rgb_matrix_config.hsv.v = qadd8(rgb_matrix_config.hsv.v, RGB_MATRIX_VAL_STEP);
489 if (rgb_matrix_config.hsv.v > RGB_MATRIX_MAXIMUM_BRIGHTNESS) rgb_matrix_config.hsv.v = RGB_MATRIX_MAXIMUM_BRIGHTNESS;
490 eeconfig_update_rgb_matrix();
14b7602a
JH
491}
492
da1afe15 493void rgb_matrix_decrease_val(void) {
b624f32f 494 rgb_matrix_config.hsv.v = qsub8(rgb_matrix_config.hsv.v, RGB_MATRIX_VAL_STEP);
495 eeconfig_update_rgb_matrix();
14b7602a
JH
496}
497
da1afe15 498void rgb_matrix_increase_speed(void) {
b624f32f 499 rgb_matrix_config.speed = qadd8(rgb_matrix_config.speed, RGB_MATRIX_SPD_STEP);
500 eeconfig_update_rgb_matrix();
afacd423 501}
502
da1afe15 503void rgb_matrix_decrease_speed(void) {
b624f32f 504 rgb_matrix_config.speed = qsub8(rgb_matrix_config.speed, RGB_MATRIX_SPD_STEP);
505 eeconfig_update_rgb_matrix();
afacd423 506}
507
b624f32f 508led_flags_t rgb_matrix_get_flags(void) { return rgb_effect_params.flags; }
a7113c8e 509
b624f32f 510void rgb_matrix_set_flags(led_flags_t flags) { rgb_effect_params.flags = flags; }
a7113c8e 511
da1afe15 512void rgb_matrix_mode(uint8_t mode) {
b624f32f 513 rgb_matrix_config.mode = mode;
514 rgb_task_state = STARTING;
515 eeconfig_update_rgb_matrix();
14b7602a
JH
516}
517
b624f32f 518void rgb_matrix_mode_noeeprom(uint8_t mode) { rgb_matrix_config.mode = mode; }
da1afe15 519
b624f32f 520uint8_t rgb_matrix_get_mode(void) { return rgb_matrix_config.mode; }
9aecf4cc 521
da1afe15 522void rgb_matrix_sethsv(uint16_t hue, uint8_t sat, uint8_t val) {
b624f32f 523 rgb_matrix_sethsv_noeeprom(hue, sat, val);
524 eeconfig_update_rgb_matrix();
9aecf4cc 525}
da1afe15
DJ
526
527void rgb_matrix_sethsv_noeeprom(uint16_t hue, uint8_t sat, uint8_t val) {
b624f32f 528 rgb_matrix_config.hsv.h = hue;
529 rgb_matrix_config.hsv.s = sat;
530 rgb_matrix_config.hsv.v = val;
531 if (rgb_matrix_config.hsv.v > RGB_MATRIX_MAXIMUM_BRIGHTNESS) rgb_matrix_config.hsv.v = RGB_MATRIX_MAXIMUM_BRIGHTNESS;
da1afe15 532}