]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
RGB Driver Documentation Update (#3601)
authoryiancar <yiangosyiangou@cytanet.com.cy>
Fri, 10 Aug 2018 00:41:48 +0000 (03:41 +0300)
committerDrashna Jaelre <drashna@live.com>
Fri, 10 Aug 2018 00:41:48 +0000 (17:41 -0700)
- Minor formating in rgb matrix page
- Added a short discription for is31fl3731 in drivers page

docs/feature_rgb_matrix.md
docs/hardware_drivers.md

index cb7aa666cf4e50e74a51ea14c137a41a2e85e843..ed33c7ea4ee912826bc3c1f1441f4d3576826d29 100644 (file)
@@ -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`.
index 46e6a71015879753fe9f4a769dbd42189f1ad1c8..336bc908ef3ed53bb73e13c351f34c45045f4c14 100644 (file)
@@ -25,3 +25,7 @@ You can make use of uGFX within QMK to drive character and graphic LCD's, LED ar
 ## WS2812 (AVR Only)
 
 Support for WS2811/WS2812{a,b,c} LED's. For more information see the [RGB Light](feature_rgblight.md) page.
+
+## IS31FL3731 (AVR Only)
+
+Support for up to 2 drivers. Each driver impliments 2 charlieplex matrices to individually address LEDs using I2C. This allows up to 144 same color LEDs or 32 RGB LEDs. For more information on how to setup the driver see the [RGB Matrix](feature_rgb_matrix.md) page.