aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_rgb_matrix.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-rw-r--r--docs/feature_rgb_matrix.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md
index 8f0cd12b3..916fcdce0 100644
--- a/docs/feature_rgb_matrix.md
+++ b/docs/feature_rgb_matrix.md
@@ -42,11 +42,11 @@ Define these arrays listing all the LEDs in your `<keyboard>.c`:
42```C 42```C
43const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { 43const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
44/* Refer to IS31 manual for these locations 44/* Refer to IS31 manual for these locations
45 * driver 45 * driver
46 * | R location 46 * | R location
47 * | | G location 47 * | | G location
48 * | | | B location 48 * | | | B location
49 * | | | | */ 49 * | | | | */
50 {0, C1_3, C2_3, C3_3}, 50 {0, C1_3, C2_3, C3_3},
51 .... 51 ....
52} 52}
@@ -93,11 +93,11 @@ Define these arrays listing all the LEDs in your `<keyboard>.c`:
93```C 93```C
94const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { 94const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
95/* Refer to IS31 manual for these locations 95/* Refer to IS31 manual for these locations
96 * driver 96 * driver
97 * | R location 97 * | R location
98 * | | G location 98 * | | G location
99 * | | | B location 99 * | | | B location
100 * | | | | */ 100 * | | | | */
101 {0, B_1, A_1, C_1}, 101 {0, B_1, A_1, C_1},
102 .... 102 ....
103} 103}