diff options
author | skullY <skullydazed@gmail.com> | 2019-01-26 21:25:59 -0800 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2019-02-10 15:37:12 -0800 |
commit | 6b74dd6de5359da18e87b2d4894e3ffc3fc89d47 (patch) | |
tree | d4b467f032aadac477c4c2fb21d17a6c35dd30a0 /quantum/led_matrix_drivers.c | |
parent | bf2670601d29551896bab6811b9bb64de2d0ee0e (diff) | |
download | firmware-6b74dd6de5359da18e87b2d4894e3ffc3fc89d47.tar.gz firmware-6b74dd6de5359da18e87b2d4894e3ffc3fc89d47.tar.bz2 firmware-6b74dd6de5359da18e87b2d4894e3ffc3fc89d47.zip |
led_matrix works now
Diffstat (limited to 'quantum/led_matrix_drivers.c')
-rw-r--r-- | quantum/led_matrix_drivers.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/quantum/led_matrix_drivers.c b/quantum/led_matrix_drivers.c index e0f8b2094..21e8a14c6 100644 --- a/quantum/led_matrix_drivers.c +++ b/quantum/led_matrix_drivers.c @@ -64,7 +64,8 @@ static void init(void) { IS31FL3733_init(LED_DRIVER_ADDR_4); #endif #endif - for (int index = 0; index < LED_DRIVER_COUNT; index++) { + + for (int index = 0; index < LED_DRIVER_LED_COUNT; index++) { #ifdef IS31FL3731 IS31FL3731_set_led_control_register(index, true); #else |