~ruther/qmk_firmware

c8a4c0da0aa8c4283c38958fb211e91067a12687 — QMK Bot 3 years ago 2ebf587 + a63c2c5
Merge remote-tracking branch 'origin/master' into develop
1 files changed, 10 insertions(+), 0 deletions(-)

M docs/feature_rgb_matrix.md
M docs/feature_rgb_matrix.md => docs/feature_rgb_matrix.md +10 -0
@@ 815,3 815,13 @@ void rgb_matrix_indicators_advanced_user(uint8_t led_min, uint8_t led_max) {
    }
}
```

#### Indicators without RGB Matrix Effect

If 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:
```c
void keyboard_post_init_user(void) {
    rgb_matrix_mode_noeeprom(RGB_MATRIX_SOLID_COLOR);
    rgb_matrix_sethsv_noeeprom(HSV_OFF);
}
```