aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/feature_rgb_matrix.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md
index f8b065355..a9e711c9f 100644
--- a/docs/feature_rgb_matrix.md
+++ b/docs/feature_rgb_matrix.md
@@ -306,6 +306,12 @@ To declare new effects, create a new `rgb_matrix_user/kb.inc` that looks somethi
306`rgb_matrix_user.inc` should go in the root of the keymap directory. 306`rgb_matrix_user.inc` should go in the root of the keymap directory.
307`rgb_matrix_kb.inc` should go in the root of the keyboard directory. 307`rgb_matrix_kb.inc` should go in the root of the keyboard directory.
308 308
309To use custom effects in your code, simply prepend `RGB_MATRIX_CUSTOM_` to the effect name specified in `RGB_MATRIX_EFFECT()`. For example, an effect declared as `RGB_MATRIX_EFFECT(my_cool_effect)` would be referenced with:
310
311```c
312rgb_matrix_mode(RGB_MATRIX_CUSTOM_my_cool_effect);
313```
314
309```c 315```c
310// !!! DO NOT ADD #pragma once !!! // 316// !!! DO NOT ADD #pragma once !!! //
311 317