Added wireless support; Added Lemokey L3; Added Keychron V1 Max

This commit is contained in:
lokher 2024-01-10 16:22:49 +08:00
parent 9539f135d8
commit 4ae5990fcc
31585 changed files with 99327 additions and 1763186 deletions

View file

@ -87,7 +87,17 @@ const rgb_matrix_driver_t rgb_matrix_driver = {
.set_color = snled27351_set_color,
.set_color_all = snled27351_set_color_all,
};
#elif defined(RGB_MATRIX_SNLED27351_SPI)
const rgb_matrix_driver_t rgb_matrix_driver = {
.init = snled27351_init_drivers,
.flush = snled27351_flush,
.set_color = snled27351_set_color,
.set_color_all = snled27351_set_color_all,
# if defined(RGB_MATRIX_DRIVER_SHUTDOWN_ENABLE)
.shutdown = snled27351_shutdown,
.exit_shutdown = snled27351_exit_shutdown
# endif
};
#elif defined(RGB_MATRIX_AW20216S)
const rgb_matrix_driver_t rgb_matrix_driver = {
.init = aw20216s_init_drivers,