diff options
author | QMK Bot <hello@qmk.fm> | 2022-01-21 14:18:11 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2022-01-21 14:18:11 +0000 |
commit | 2f5c70e834ccfe2051f67236c0eab4ab436d0591 (patch) | |
tree | 3bea0766c9b8cee5f852d1d9afe8bf66f4be960e /docs | |
parent | be6a4745ae73f31041f3b2129174561b70b38b10 (diff) | |
parent | ad09160b03d5139a1fa05ac1fb44c1451485a616 (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_led_matrix.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_led_matrix.md b/docs/feature_led_matrix.md index dfd63503f2..37f38cc6ed 100644 --- a/docs/feature_led_matrix.md +++ b/docs/feature_led_matrix.md @@ -333,7 +333,7 @@ Where `28` is an unused index from `eeconfig.h`. If you want to set custom indicators, such as an LED for Caps Lock, or layer indication, you can use the `led_matrix_indicators_kb` or `led_matrix_indicators_user` function for that: ```c void led_matrix_indicators_kb(void) { - led_matrix_set_color(index, value); + led_matrix_set_value(index, value); } ``` |