1
0
Fork 0

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:
HorrorTroll 2024-02-16 21:41:35 +07:00 committed by GitHub
parent 9b0b3d7b25
commit f6709e65eb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 1013 additions and 3 deletions

View file

@ -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,