aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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```