2021-06-10 21:50:24 +00:00
|
|
|
/* Copyright 2021 Drashna Jael're
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2024-04-02 23:44:25 +00:00
|
|
|
#include "rgblight.h"
|
|
|
|
#include "rgb_matrix.h"
|
2021-06-10 21:50:24 +00:00
|
|
|
|
2021-09-02 17:49:44 +00:00
|
|
|
#ifdef RGBLIGHT_ENABLE
|
2023-04-06 08:00:54 +00:00
|
|
|
#undef WS2812_DI_PIN
|
|
|
|
#define WS2812_DI_PIN RGBLIGHT_DI_PIN
|
2021-09-02 17:49:44 +00:00
|
|
|
|
2024-03-18 11:03:27 +00:00
|
|
|
#define ws2812_init ws2812_rgb_init
|
2024-10-06 08:01:07 +00:00
|
|
|
#define ws2812_set_color ws2812_rgb_set_color
|
|
|
|
#define ws2812_set_color_all ws2812_rgb_set_color_all
|
|
|
|
#define ws2812_flush ws2812_rgb_flush
|
2021-09-02 17:49:44 +00:00
|
|
|
|
2023-03-30 01:21:02 +00:00
|
|
|
#include "ws2812_bitbang.c"
|
2021-06-10 21:50:24 +00:00
|
|
|
|
2023-12-05 11:49:14 +00:00
|
|
|
const rgblight_driver_t rgblight_driver = {
|
2024-10-06 08:01:07 +00:00
|
|
|
.init = ws2812_init,
|
|
|
|
.set_color = ws2812_set_color,
|
|
|
|
.set_color_all = ws2812_set_color_all,
|
|
|
|
.flush = ws2812_flush,
|
2023-12-05 11:49:14 +00:00
|
|
|
};
|
2021-06-10 21:50:24 +00:00
|
|
|
#endif
|