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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "rgb_matrix.h"
|
|
|
|
|
|
|
|
/* 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.
|
|
|
|
*/
|
|
|
|
|
2020-06-22 03:21:48 +02:00
|
|
|
#if defined(IS31FL3731) || defined(IS31FL3733) || defined(IS31FL3737) || defined(IS31FL3741)
|
2018-09-27 16:40:18 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# include "i2c_master.h"
|
2018-09-27 16:40:18 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void init(void) {
|
2018-09-27 16:40:18 +02:00
|
|
|
i2c_init();
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef IS31FL3731
|
|
|
|
IS31FL3731_init(DRIVER_ADDR_1);
|
2020-10-04 22:54:31 +02:00
|
|
|
# ifdef DRIVER_ADDR_2
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3731_init(DRIVER_ADDR_2);
|
2020-10-04 22:54:31 +02:00
|
|
|
# endif
|
2020-11-05 20:58:46 +01:00
|
|
|
# ifdef DRIVER_ADDR_3
|
|
|
|
IS31FL3731_init(DRIVER_ADDR_3);
|
|
|
|
# endif
|
|
|
|
# ifdef DRIVER_ADDR_4
|
|
|
|
IS31FL3731_init(DRIVER_ADDR_4);
|
|
|
|
# endif
|
2019-08-30 20:19:03 +02:00
|
|
|
# elif defined(IS31FL3733)
|
|
|
|
IS31FL3733_init(DRIVER_ADDR_1, 0);
|
2020-06-20 06:49:15 +02:00
|
|
|
# elif defined(IS31FL3737)
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3737_init(DRIVER_ADDR_1);
|
2020-06-20 06:49:15 +02:00
|
|
|
# else
|
|
|
|
IS31FL3741_init(DRIVER_ADDR_1);
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
|
|
|
for (int index = 0; index < DRIVER_LED_TOTAL; index++) {
|
2018-09-27 16:40:18 +02:00
|
|
|
bool enabled = true;
|
|
|
|
// This only caches it for later
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef IS31FL3731
|
|
|
|
IS31FL3731_set_led_control_register(index, enabled, enabled, enabled);
|
|
|
|
# elif defined(IS31FL3733)
|
|
|
|
IS31FL3733_set_led_control_register(index, enabled, enabled, enabled);
|
2020-06-20 06:49:15 +02:00
|
|
|
# elif defined(IS31FL3737)
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3737_set_led_control_register(index, enabled, enabled, enabled);
|
2020-06-20 06:49:15 +02:00
|
|
|
# else
|
|
|
|
IS31FL3741_set_led_control_register(index, enabled, enabled, enabled);
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2018-09-27 16:40:18 +02:00
|
|
|
}
|
|
|
|
// This actually updates the LED drivers
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef IS31FL3731
|
|
|
|
IS31FL3731_update_led_control_registers(DRIVER_ADDR_1, 0);
|
2020-10-04 22:54:31 +02:00
|
|
|
# ifdef DRIVER_ADDR_2
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3731_update_led_control_registers(DRIVER_ADDR_2, 1);
|
2020-10-04 22:54:31 +02:00
|
|
|
# endif
|
2020-11-05 20:58:46 +01:00
|
|
|
# ifdef DRIVER_ADDR_3
|
|
|
|
IS31FL3731_update_led_control_registers(DRIVER_ADDR_3, 2);
|
|
|
|
# endif
|
|
|
|
# ifdef DRIVER_ADDR_4
|
|
|
|
IS31FL3731_update_led_control_registers(DRIVER_ADDR_4, 3);
|
|
|
|
# endif
|
2019-08-30 20:19:03 +02:00
|
|
|
# elif defined(IS31FL3733)
|
|
|
|
IS31FL3733_update_led_control_registers(DRIVER_ADDR_1, 0);
|
|
|
|
IS31FL3733_update_led_control_registers(DRIVER_ADDR_2, 1);
|
2020-06-20 06:49:15 +02:00
|
|
|
# elif defined(IS31FL3737)
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3737_update_led_control_registers(DRIVER_ADDR_1, DRIVER_ADDR_2);
|
2020-06-20 06:49:15 +02:00
|
|
|
# else
|
|
|
|
IS31FL3741_update_led_control_registers(DRIVER_ADDR_1, 0);
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2018-09-27 16:40:18 +02:00
|
|
|
}
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
# ifdef IS31FL3731
|
|
|
|
static void flush(void) {
|
|
|
|
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_1, 0);
|
2020-10-04 22:54:31 +02:00
|
|
|
# ifdef DRIVER_ADDR_2
|
2019-08-30 20:19:03 +02:00
|
|
|
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_2, 1);
|
2020-10-04 22:54:31 +02:00
|
|
|
# endif
|
2020-11-05 20:58:46 +01:00
|
|
|
# ifdef DRIVER_ADDR_3
|
|
|
|
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_3, 2);
|
|
|
|
# endif
|
|
|
|
# ifdef DRIVER_ADDR_4
|
|
|
|
IS31FL3731_update_pwm_buffers(DRIVER_ADDR_4, 3);
|
|
|
|
# endif
|
2018-09-27 16:40:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
2019-08-30 20:19:03 +02:00
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_color = IS31FL3731_set_color,
|
2018-09-27 16:40:18 +02:00
|
|
|
.set_color_all = IS31FL3731_set_color_all,
|
|
|
|
};
|
2019-08-30 20:19:03 +02:00
|
|
|
# elif defined(IS31FL3733)
|
|
|
|
static void flush(void) {
|
|
|
|
IS31FL3733_update_pwm_buffers(DRIVER_ADDR_1, 0);
|
|
|
|
IS31FL3733_update_pwm_buffers(DRIVER_ADDR_2, 1);
|
2018-09-27 16:40:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_color = IS31FL3733_set_color,
|
|
|
|
.set_color_all = IS31FL3733_set_color_all,
|
|
|
|
};
|
2020-06-20 06:49:15 +02:00
|
|
|
# elif defined(IS31FL3737)
|
2019-08-30 20:19:03 +02:00
|
|
|
static void flush(void) { IS31FL3737_update_pwm_buffers(DRIVER_ADDR_1, DRIVER_ADDR_2); }
|
2019-04-09 01:57:43 +02:00
|
|
|
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_color = IS31FL3737_set_color,
|
|
|
|
.set_color_all = IS31FL3737_set_color_all,
|
|
|
|
};
|
2020-06-20 06:49:15 +02:00
|
|
|
# else
|
2020-06-22 03:21:48 +02:00
|
|
|
static void flush(void) { IS31FL3741_update_pwm_buffers(DRIVER_ADDR_1, DRIVER_ADDR_2); }
|
2020-06-20 06:49:15 +02:00
|
|
|
|
|
|
|
const rgb_matrix_driver_t rgb_matrix_driver = {
|
|
|
|
.init = init,
|
|
|
|
.flush = flush,
|
|
|
|
.set_color = IS31FL3741_set_color,
|
|
|
|
.set_color_all = IS31FL3741_set_color_all,
|
|
|
|
};
|
2019-08-30 20:19:03 +02:00
|
|
|
# endif
|
2018-09-27 16:40:18 +02:00
|
|
|
|
2019-04-15 02:50:35 +02:00
|
|
|
#elif defined(WS2812)
|
2020-08-25 11:05:39 +02:00
|
|
|
# if defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_CUSTOM_DRIVER)
|
|
|
|
# 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
|
2020-06-21 00:07:26 +02:00
|
|
|
LED_TYPE rgb_matrix_ws2812_array[DRIVER_LED_TOTAL];
|
2019-10-29 02:00:03 +01:00
|
|
|
|
|
|
|
static void init(void) {}
|
2019-04-15 02:50:35 +02:00
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
static void flush(void) {
|
2019-04-15 02:50:35 +02:00
|
|
|
// Assumes use of RGB_DI_PIN
|
2020-06-21 00:07:26 +02:00
|
|
|
ws2812_setleds(rgb_matrix_ws2812_array, DRIVER_LED_TOTAL);
|
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) {
|
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) {
|
2020-06-21 00:07:26 +02:00
|
|
|
for (int i = 0; i < sizeof(rgb_matrix_ws2812_array) / sizeof(rgb_matrix_ws2812_array[0]); 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
|
|
|
};
|
2018-09-27 16:40:18 +02:00
|
|
|
#endif
|