summaryrefslogtreecommitdiffstats
path: root/docs/feature_rgb_matrix.md
diff options
context:
space:
mode:
authoryiancar <yiangosyiangou@cytanet.com.cy>2018-08-10 02:41:48 +0200
committerDrashna Jaelre <drashna@live.com>2018-08-10 02:41:48 +0200
commit435e9b7bdb89043b3ce8b0cfc9b0f3ee4d298166 (patch)
tree0ffcf774d95f72057fdf08c3b7c04fc9f0eed948 /docs/feature_rgb_matrix.md
parent925b65b7d0f6538d8ec410d9b1c285a178057bf1 (diff)
downloadqmk_firmware-435e9b7bdb89043b3ce8b0cfc9b0f3ee4d298166.tar.gz
qmk_firmware-435e9b7bdb89043b3ce8b0cfc9b0f3ee4d298166.tar.xz
RGB Driver Documentation Update (#3601)
- Minor formating in rgb matrix page - Added a short discription for is31fl3731 in drivers page
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-rw-r--r--docs/feature_rgb_matrix.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md
index cb7aa666c..ed33c7ea4 100644
--- a/docs/feature_rgb_matrix.md
+++ b/docs/feature_rgb_matrix.md
@@ -80,7 +80,7 @@ All RGB keycodes are currently shared with the RGBLIGHT system:
These are the effects that are currently available:
enum rgb_matrix_effects {
- RGB_MATRIX_SOLID_COLOR = 1,
+ RGB_MATRIX_SOLID_COLOR = 1,
RGB_MATRIX_ALPHAS_MODS,
RGB_MATRIX_DUAL_BEACON,
RGB_MATRIX_GRADIENT_UP_DOWN,
@@ -93,7 +93,7 @@ These are the effects that are currently available:
RGB_MATRIX_RAINBOW_MOVING_CHEVRON,
RGB_MATRIX_JELLYBEAN_RAINDROPS,
#ifdef RGB_MATRIX_KEYPRESSES
- RGB_MATRIX_SOLID_REACTIVE,
+ RGB_MATRIX_SOLID_REACTIVE,
RGB_MATRIX_SPLASH,
RGB_MATRIX_MULTISPLASH,
RGB_MATRIX_SOLID_SPLASH,
@@ -107,7 +107,7 @@ These are the effects that are currently available:
Custom layer effects can be done by defining this in your `<keyboard>.c`:
void rgb_matrix_indicators_kb(void) {
- // rgb_matrix_set_color(index, red, green, blue);
+ rgb_matrix_set_color(index, red, green, blue);
}
A similar function works in the keymap as `rgb_matrix_indicators_user`.