summaryrefslogtreecommitdiffstats
path: root/docs/feature_led_matrix.md
diff options
context:
space:
mode:
authorJoshua Diamond <josh@windowoffire.com>2021-02-14 20:26:22 -0500
committerJoshua Diamond <josh@windowoffire.com>2021-02-14 20:26:22 -0500
commit0b63fb5e819495f4515001cd367a279eaf9eaaa2 (patch)
tree492c2b5de31d6ee1176371829b10a8fb419b4f8d /docs/feature_led_matrix.md
parent328a8322f4134fdec2f29b8dd58501c99b4de876 (diff)
parent9ee12820197f38f6618b78f92481f3ffd2d8b7e5 (diff)
Merge branch 'master' into develop
Diffstat (limited to 'docs/feature_led_matrix.md')
-rw-r--r--docs/feature_led_matrix.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/feature_led_matrix.md b/docs/feature_led_matrix.md
index 6de01f31a1..f4a6616340 100644
--- a/docs/feature_led_matrix.md
+++ b/docs/feature_led_matrix.md
@@ -22,7 +22,7 @@ You can use between 1 and 4 IS31FL3731 IC's. Do not specify `LED_DRIVER_ADDR_<N>
| `ISSI_TIMEOUT` | (Optional) How long to wait for i2c messages | 100 |
| `ISSI_PERSISTENCE` | (Optional) Retry failed messages this many times | 0 |
| `LED_DRIVER_COUNT` | (Required) How many LED driver IC's are present | |
-| `LED_DRIVER_LED_COUNT` | (Required) How many LED lights are present across all drivers | |
+| `DRIVER_LED_TOTAL` | (Required) How many LED lights are present across all drivers | |
| `LED_DRIVER_ADDR_1` | (Required) Address for the first LED driver | |
| `LED_DRIVER_ADDR_2` | (Optional) Address for the second LED driver | |
| `LED_DRIVER_ADDR_3` | (Optional) Address for the third LED driver | |
@@ -44,7 +44,7 @@ Here is an example using 2 drivers.
#define LED_DRIVER_COUNT 2
#define LED_DRIVER_1_LED_COUNT 25
#define LED_DRIVER_2_LED_COUNT 24
-#define LED_DRIVER_LED_COUNT LED_DRIVER_1_LED_TOTAL + LED_DRIVER_2_LED_TOTAL
+#define DRIVER_LED_TOTAL LED_DRIVER_1_LED_TOTAL + LED_DRIVER_2_LED_TOTAL
```
Currently only 2 drivers are supported, but it would be trivial to support all 4 combinations.