2018-09-27 16:40:18 +02:00
|
|
|
/* Copyright 2018 James Laird-Wah
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2023-12-08 06:54:47 +01:00
|
|
|
#include "rgb_matrix_drivers.h"
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "keyboard.h"
|
|
|
|
#include "color.h"
|
2023-07-16 15:42:56 +02:00
|
|
|
#include "util.h"
|
2018-09-27 16:40:18 +02:00
|
|
|
|
|
|
|
/* Each driver needs to define the struct
|
|
|
|
* const rgb_matrix_driver_t rgb_matrix_driver;
|
|
|
|
* All members must be provided.
|
|
|
|
* Keyboard custom drivers can define this in their own files, it should only
|
|
|
|
* be here if shared between boards.
|
|
|
|
*/
|
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#if defined(RGB_MATRIX_IS31FL3218)
|
2023-09-17 14:11:16 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3218_init,
|
2023-10-22 19:32:27 +02:00
|
|
|
.flush = is31fl3218_update_pwm_buffers,
|
2023-09-17 14:11:16 +02:00
|
|
|
.set_color = is31fl3218_set_color,
|
|
|
|
.set_color_all = is31fl3218_set_color_all,
|
|
|
|
};
|
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3731)
|
2018-09-27 16:40:18 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3731_init_drivers,
|
|
|
|
.flush = is31fl3731_flush,
|
|
|
|
.set_color = is31fl3731_set_color,
|
2023-08-23 02:00:03 +02:00
|
|
|
.set_color_all = is31fl3731_set_color_all,
|
2018-09-27 16:40:18 +02:00
|
|
|
};
|
2021-10-11 01:57:49 +02:00
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3733)
|
2018-09-27 16:40:18 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3733_init_drivers,
|
|
|
|
.flush = is31fl3733_flush,
|
|
|
|
.set_color = is31fl3733_set_color,
|
2023-08-23 02:00:03 +02:00
|
|
|
.set_color_all = is31fl3733_set_color_all,
|
2018-09-27 16:40:18 +02:00
|
|
|
};
|
2021-10-11 01:57:49 +02:00
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3736)
|
2023-04-30 04:35:27 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3736_init_drivers,
|
|
|
|
.flush = is31fl3736_flush,
|
|
|
|
.set_color = is31fl3736_set_color,
|
2023-08-23 02:00:03 +02:00
|
|
|
.set_color_all = is31fl3736_set_color_all,
|
2023-04-30 04:35:27 +02:00
|
|
|
};
|
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3737)
|
2019-04-09 01:57:43 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3737_init_drivers,
|
|
|
|
.flush = is31fl3737_flush,
|
|
|
|
.set_color = is31fl3737_set_color,
|
2023-08-23 02:00:03 +02:00
|
|
|
.set_color_all = is31fl3737_set_color_all,
|
2019-04-09 01:57:43 +02:00
|
|
|
};
|
2021-10-11 01:57:49 +02:00
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3741)
|
2020-06-20 06:49:15 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = is31fl3741_init_drivers,
|
|
|
|
.flush = is31fl3741_flush,
|
|
|
|
.set_color = is31fl3741_set_color,
|
2023-08-23 02:00:03 +02:00
|
|
|
.set_color_all = is31fl3741_set_color_all,
|
2020-06-20 06:49:15 +02:00
|
|
|
};
|
2021-11-01 23:43:53 +01:00
|
|
|
|
2024-01-01 02:40:35 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3742A)
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = is31fl3742a_init_drivers,
|
|
|
|
.flush = is31fl3742a_flush,
|
|
|
|
.set_color = is31fl3742a_set_color,
|
|
|
|
.set_color_all = is31fl3742a_set_color_all,
|
|
|
|
};
|
|
|
|
|
2024-01-01 07:04:51 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3743A)
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = is31fl3743a_init_drivers,
|
|
|
|
.flush = is31fl3743a_flush,
|
|
|
|
.set_color = is31fl3743a_set_color,
|
|
|
|
.set_color_all = is31fl3743a_set_color_all,
|
|
|
|
};
|
|
|
|
|
2024-01-01 09:31:44 +01:00
|
|
|
#elif defined(RGB_MATRIX_IS31FL3745)
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = is31fl3745_init_drivers,
|
|
|
|
.flush = is31fl3745_flush,
|
|
|
|
.set_color = is31fl3745_set_color,
|
|
|
|
.set_color_all = is31fl3745_set_color_all,
|
|
|
|
};
|
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(IS31FLCOMMON)
|
2022-02-06 18:04:43 +01:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = IS31FL_RGB_init_drivers,
|
|
|
|
.flush = IS31FL_common_flush,
|
|
|
|
.set_color = IS31FL_RGB_set_color,
|
2022-02-06 18:04:43 +01:00
|
|
|
.set_color_all = IS31FL_RGB_set_color_all,
|
|
|
|
};
|
|
|
|
|
2023-11-01 01:53:45 +01:00
|
|
|
#elif defined(RGB_MATRIX_SNLED27351)
|
2021-11-01 23:43:53 +01:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = snled27351_init_drivers,
|
|
|
|
.flush = snled27351_flush,
|
|
|
|
.set_color = snled27351_set_color,
|
2023-10-04 11:10:05 +02:00
|
|
|
.set_color_all = snled27351_set_color_all,
|
2021-11-01 23:43:53 +01:00
|
|
|
};
|
2018-09-27 16:40:18 +02:00
|
|
|
|
2023-09-21 04:16:17 +02:00
|
|
|
#elif defined(RGB_MATRIX_AW20216S)
|
2021-06-10 03:40:25 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2023-11-01 01:53:45 +01:00
|
|
|
.init = aw20216s_init_drivers,
|
2023-10-22 19:32:27 +02:00
|
|
|
.flush = aw20216s_flush,
|
2023-09-13 14:45:17 +02:00
|
|
|
.set_color = aw20216s_set_color,
|
|
|
|
.set_color_all = aw20216s_set_color_all,
|
2021-06-10 03:40:25 +02:00
|
|
|
};
|
|
|
|
|
2023-09-21 04:16:17 +02:00
|
|
|
#elif defined(RGB_MATRIX_WS2812)
|
2023-09-21 07:50:01 +02:00
|
|
|
# if defined(RGBLIGHT_WS2812)
|
2020-08-25 11:05:39 +02:00
|
|
|
# pragma message "Cannot use RGBLIGHT and RGB Matrix using WS2812 at the same time."
|
|
|
|
# pragma message "You need to use a custom driver, or re-implement the WS2812 driver to use a different configuration."
|
|
|
|
# endif
|
2019-04-15 02:50:35 +02:00
|
|
|
|
2019-10-29 02:00:03 +01:00
|
|
|
// LED color buffer
|
2023-12-18 21:13:08 +01:00
|
|
|
rgb_led_t rgb_matrix_ws2812_array[WS2812_LED_COUNT];
|
2023-09-04 02:19:59 +02:00
|
|
|
bool ws2812_dirty = false;
|
2019-10-29 02:00:03 +01:00
|
|
|
|
2023-06-09 02:00:22 +02:00
|
|
|
static void init(void) {
|
|
|
|
ws2812_dirty = false;
|
|
|
|
}
|
2019-04-15 02:50:35 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void flush(void) {
|
2023-06-09 02:00:22 +02:00
|
|
|
if (ws2812_dirty) {
|
2023-12-18 21:13:08 +01:00
|
|
|
ws2812_setleds(rgb_matrix_ws2812_array, WS2812_LED_COUNT);
|
2023-06-09 02:00:22 +02:00
|
|
|
ws2812_dirty = false;
|
|
|
|
}
|
2019-08-30 20:19:03 +02:00
|
|
|
}
|
2019-04-15 02:50:35 +02:00
|
|
|
|
2019-10-29 02:00:03 +01:00
|
|
|
// Set an led in the buffer to a color
|
|
|
|
static inline void setled(int i, uint8_t r, uint8_t g, uint8_t b) {
|
2021-11-01 23:04:37 +01:00
|
|
|
# if defined(RGB_MATRIX_ENABLE) && defined(RGB_MATRIX_SPLIT)
|
|
|
|
const uint8_t k_rgb_matrix_split[2] = RGB_MATRIX_SPLIT;
|
2022-02-11 21:13:22 +01:00
|
|
|
if (!is_keyboard_left()) {
|
|
|
|
if (i >= k_rgb_matrix_split[0]) {
|
|
|
|
i -= k_rgb_matrix_split[0];
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (i >= k_rgb_matrix_split[0]) {
|
2021-11-01 23:04:37 +01:00
|
|
|
return;
|
2022-02-11 21:13:22 +01:00
|
|
|
}
|
2021-11-01 23:04:37 +01:00
|
|
|
# endif
|
|
|
|
|
2023-06-09 02:00:22 +02:00
|
|
|
if (rgb_matrix_ws2812_array[i].r == r && rgb_matrix_ws2812_array[i].g == g && rgb_matrix_ws2812_array[i].b == b) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
ws2812_dirty = true;
|
2020-06-21 00:07:26 +02:00
|
|
|
rgb_matrix_ws2812_array[i].r = r;
|
|
|
|
rgb_matrix_ws2812_array[i].g = g;
|
|
|
|
rgb_matrix_ws2812_array[i].b = b;
|
2019-11-09 16:51:39 +01:00
|
|
|
# ifdef RGBW
|
2020-07-14 00:28:42 +02:00
|
|
|
convert_rgb_to_rgbw(&rgb_matrix_ws2812_array[i]);
|
2019-11-09 16:51:39 +01:00
|
|
|
# endif
|
2019-10-29 02:00:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void setled_all(uint8_t r, uint8_t g, uint8_t b) {
|
2022-08-30 10:20:04 +02:00
|
|
|
for (int i = 0; i < ARRAY_SIZE(rgb_matrix_ws2812_array); i++) {
|
2019-10-29 02:00:03 +01:00
|
|
|
setled(i, r, g, b);
|
|
|
|
}
|
|
|
|
}
|
2019-04-15 02:50:35 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
2019-10-29 02:00:03 +01:00
|
|
|
.set_color = setled,
|
|
|
|
.set_color_all = setled_all,
|
2019-08-30 20:19:03 +02:00
|
|
|
};
|
2023-11-01 01:53:45 +01:00
|
|
|
|
2018-09-27 16:40:18 +02:00
|
|
|
#endif
|