summaryrefslogtreecommitdiff
path: root/docs/feature_led_matrix.md
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2021-07-31 14:31:09 +0100
committerGitHub <noreply@github.com>2021-07-31 14:31:09 +0100
commit206a995ccd53b0843e72da606abebe06f39c9c28 (patch)
treea8b2b3e65a76429ea5171482fce7cc594851373b /docs/feature_led_matrix.md
parentaeb252435d0c161ebd22bd8210765609813fc632 (diff)
Move some led drivers to common folder (#13749)
* Move some led drivers to common folder
Diffstat (limited to 'docs/feature_led_matrix.md')
-rw-r--r--docs/feature_led_matrix.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_led_matrix.md b/docs/feature_led_matrix.md
index 018da43dd1..afa11e7232 100644
--- a/docs/feature_led_matrix.md
+++ b/docs/feature_led_matrix.md
@@ -63,7 +63,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
}
```
-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-simple.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` ).
+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-simple.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` ).
---