aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2021-11-05 16:11:45 +0800
committerGitHub <noreply@github.com>2021-11-05 19:11:45 +1100
commita63c2c5f509e98dc58ea876f525896aa717a0d6e (patch)
treeb6e9106af9a19a14823fc3f041373a43aa1448b3 /docs
parentcc5a38e7873ee184394b577b12b3b4578611b772 (diff)
downloadqmk_firmware-a63c2c5f509e98dc58ea876f525896aa717a0d6e.tar.gz
qmk_firmware-a63c2c5f509e98dc58ea876f525896aa717a0d6e.zip
Add example for turning off RGB colors and retaining indicator function (#14997)
* Add init function for solid effect with colors off * Restructure sentence Co-authored-by: filterpaper <filterpaper@localhost>
Diffstat (limited to 'docs')
-rw-r--r--docs/feature_rgb_matrix.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md
index 2dbd32fbd..fe72d063e 100644
--- a/docs/feature_rgb_matrix.md
+++ b/docs/feature_rgb_matrix.md
@@ -780,3 +780,13 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
780 } 780 }
781} 781}
782``` 782```
783
784#### Indicators without RGB Matrix Effect
785
786If you want to just use RGB indicators without RGB matrix effect, it is not possible to disable the latter because toggling RGB off will disable everything. You can workaround it with solid effect and colors off using this init function:
787```c
788void keyboard_post_init_user(void) {
789 rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
790 rgb_matrix_sethsv_noeeprom(HSV_OFF);
791}
792```