Add RGB matrix & LED Matrix support for IS31FL3729 (#21944)
Co-authored-by: Xelus22 <preyas22@gmail.com> Co-authored-by: dexter93 <d3xter93@gmail.com>
This commit is contained in:
parent
9b0b3d7b25
commit
f6709e65eb
10 changed files with 1013 additions and 3 deletions
|
@ -36,6 +36,14 @@ const rgb_matrix_driver_t rgb_matrix_driver = {
|
|||
.set_color_all = is31fl3218_set_color_all,
|
||||
};
|
||||
|
||||
#elif defined(RGB_MATRIX_IS31FL3729)
|
||||
const rgb_matrix_driver_t rgb_matrix_driver = {
|
||||
.init = is31fl3729_init_drivers,
|
||||
.flush = is31fl3729_flush,
|
||||
.set_color = is31fl3729_set_color,
|
||||
.set_color_all = is31fl3729_set_color_all,
|
||||
};
|
||||
|
||||
#elif defined(RGB_MATRIX_IS31FL3731)
|
||||
const rgb_matrix_driver_t rgb_matrix_driver = {
|
||||
.init = is31fl3731_init_drivers,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue