aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_rgb_matrix.md
diff options
context:
space:
mode:
authorQMK Bot <hello@qmk.fm>2021-11-05 08:12:19 +0000
committerQMK Bot <hello@qmk.fm>2021-11-05 08:12:19 +0000
commitc8a4c0da0aa8c4283c38958fb211e91067a12687 (patch)
tree42df60149078589ef758ef2f3d1b1a241c401c6e /docs/feature_rgb_matrix.md
parent2ebf587ebf9c81ecc3874ddfebedbedce76ddd33 (diff)
parenta63c2c5f509e98dc58ea876f525896aa717a0d6e (diff)
downloadqmk_firmware-c8a4c0da0aa8c4283c38958fb211e91067a12687.tar.gz
qmk_firmware-c8a4c0da0aa8c4283c38958fb211e91067a12687.zip
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-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 6370c637a..2b9ee5c52 100644
--- a/docs/feature_rgb_matrix.md
+++ b/docs/feature_rgb_matrix.md
@@ -815,3 +815,13 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
815 } 815 }
816} 816}
817``` 817```
818
819#### Indicators without RGB Matrix Effect
820
821If 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:
822```c
823void keyboard_post_init_user(void) {
824 rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
825 rgb_matrix_sethsv_noeeprom(HSV_OFF);
826}
827```