diff options
author | Joel Challis <git@zvecr.com> | 2021-07-31 14:31:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-31 14:31:09 +0100 |
commit | 206a995ccd53b0843e72da606abebe06f39c9c28 (patch) | |
tree | a8b2b3e65a76429ea5171482fce7cc594851373b /docs/feature_rgb_matrix.md | |
parent | aeb252435d0c161ebd22bd8210765609813fc632 (diff) | |
download | qmk_firmware-206a995ccd53b0843e72da606abebe06f39c9c28.tar.gz qmk_firmware-206a995ccd53b0843e72da606abebe06f39c9c28.zip |
Move some led drivers to common folder (#13749)
* Move some led drivers to common folder
Diffstat (limited to 'docs/feature_rgb_matrix.md')
-rw-r--r-- | docs/feature_rgb_matrix.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/feature_rgb_matrix.md b/docs/feature_rgb_matrix.md index bd47fb6d3..18e38955e 100644 --- a/docs/feature_rgb_matrix.md +++ b/docs/feature_rgb_matrix.md | |||
@@ -64,7 +64,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | |||
64 | } | 64 | } |
65 | ``` | 65 | ``` |
66 | 66 | ||
67 | Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3`). | 67 | Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/led/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3`). |
68 | 68 | ||
69 | --- | 69 | --- |
70 | ### IS31FL3733 :id=is31fl3733 | 70 | ### IS31FL3733 :id=is31fl3733 |
@@ -134,7 +134,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = { | |||
134 | } | 134 | } |
135 | ``` | 135 | ``` |
136 | 136 | ||
137 | Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` for now). | 137 | Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/led/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` for now). |
138 | 138 | ||
139 | --- | 139 | --- |
140 | ### IS31FL3737 :id=is31fl3737 | 140 | ### IS31FL3737 :id=is31fl3737 |
@@ -198,7 +198,7 @@ const is31_led PROGMEM g_is31_leds[DRIVER_LED_TOTAL] = { | |||
198 | } | 198 | } |
199 | ``` | 199 | ``` |
200 | 200 | ||
201 | Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3737.pdf) and the header file `drivers/issi/is31fl3737.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0`, `1` for now). | 201 | Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3737.pdf) and the header file `drivers/led/issi/is31fl3737.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0`, `1` for now). |
202 | 202 | ||
203 | --- | 203 | --- |
204 | 204 | ||