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_led_matrix.md | |
parent | aeb252435d0c161ebd22bd8210765609813fc632 (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.md | 2 |
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` ). --- |