diff options
author | Albert Y <76888457+filterpaper@users.noreply.github.com> | 2022-07-14 19:22:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-14 12:22:53 +0100 |
commit | 300dab7962ba50dcb4c550c91097573fa09b8dea (patch) | |
tree | 6c4be65a04d5a7fd995be1562b4b94d4fd711f4a /docs | |
parent | 3c58f989295e17d03b66db9a154e02cde7336ece (diff) |
[Code] Add solid reactive gradient mode (#17228)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_rgb_matrix.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index 2debfd1c2f..f9ab395488 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md @@ -688,6 +688,16 @@ Remove the spread effect entirely. #define RGB_MATRIX_TYPING_HEATMAP_SLIM ``` +### RGB Matrix Effect Solid Reactive :id=rgb-matrix-effect-solid-reactive + +Solid reactive effects will pulse RGB light on key presses with user configurable hues. To enable gradient mode that will automatically change reactive color, add the following define: + +```c +#define RGB_MATRIX_SOLID_REACTIVE_GRADIENT_MODE +``` + +Gradient mode will loop through the color wheel hues over time and its duration can be controlled with the effect speed keycodes (`RGB_SPI`/`RGB_SPD`). + ## Custom RGB Matrix Effects :id=custom-rgb-matrix-effects By setting `RGB_MATRIX_CUSTOM_USER = yes` in `rules.mk`, new effects can be defined directly from your keymap or userspace, without having to edit any QMK core files. To declare new effects, create a `rgb_matrix_user.inc` file in the user keymap directory or userspace folder. |