diff options
author | Leo Deng <myst.dg@gmail.com> | 2022-01-09 11:37:03 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-08 19:37:03 -0800 |
commit | 82d3bdb733194a21fddd5cfa2ebc8234a05bfc6f (patch) | |
tree | 345785130b6da007bcaf8923811fe5eb7d11c332 /quantum/led_matrix | |
parent | 98078f769de7e4184f3934b46797203485b6c3fc (diff) |
IS31FL3733 driver for LED Matrix (#15088)
Diffstat (limited to 'quantum/led_matrix')
-rw-r--r-- | quantum/led_matrix/led_matrix.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/led_matrix/led_matrix.h b/quantum/led_matrix/led_matrix.h index e42be64661..cb7526d6e0 100644 --- a/quantum/led_matrix/led_matrix.h +++ b/quantum/led_matrix/led_matrix.h @@ -2,6 +2,7 @@ * Copyright 2017 Jack Humbert * Copyright 2018 Yiancar * Copyright 2019 Clueboard + * Copyright 2021 Leo Deng * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -27,6 +28,9 @@ #ifdef IS31FL3731 # include "is31fl3731-simple.h" #endif +#ifdef IS31FL3733 +# include "is31fl3733-simple.h" +#endif #ifndef LED_MATRIX_LED_FLUSH_LIMIT # define LED_MATRIX_LED_FLUSH_LIMIT 16 |