2024-10-06 08:01:07 +00:00
|
|
|
// Copyright 2024 QMK
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
2019-10-29 22:53:11 +00:00
|
|
|
#include "ws2812.h"
|
|
|
|
#include "i2c_master.h"
|
|
|
|
|
2024-04-27 14:36:54 +00:00
|
|
|
#ifdef WS2812_RGBW
|
2019-11-09 15:51:39 +00:00
|
|
|
# error "RGBW not supported"
|
|
|
|
#endif
|
|
|
|
|
2023-03-30 01:21:02 +00:00
|
|
|
#ifndef WS2812_I2C_ADDRESS
|
|
|
|
# define WS2812_I2C_ADDRESS 0xB0
|
2019-10-29 22:53:11 +00:00
|
|
|
#endif
|
|
|
|
|
2023-03-30 01:21:02 +00:00
|
|
|
#ifndef WS2812_I2C_TIMEOUT
|
|
|
|
# define WS2812_I2C_TIMEOUT 100
|
2019-10-29 22:53:11 +00:00
|
|
|
#endif
|
|
|
|
|
2024-10-06 08:01:07 +00:00
|
|
|
ws2812_led_t ws2812_leds[WS2812_LED_COUNT];
|
|
|
|
|
2022-02-12 18:29:31 +00:00
|
|
|
void ws2812_init(void) {
|
|
|
|
i2c_init();
|
|
|
|
}
|
2019-10-29 22:53:11 +00:00
|
|
|
|
2024-10-06 08:01:07 +00:00
|
|
|
void ws2812_set_color(int index, uint8_t red, uint8_t green, uint8_t blue) {
|
|
|
|
ws2812_leds[index].r = red;
|
|
|
|
ws2812_leds[index].g = green;
|
|
|
|
ws2812_leds[index].b = blue;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ws2812_set_color_all(uint8_t red, uint8_t green, uint8_t blue) {
|
|
|
|
for (int i = 0; i < WS2812_LED_COUNT; i++) {
|
|
|
|
ws2812_set_color(i, red, green, blue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ws2812_flush(void) {
|
|
|
|
i2c_transmit(WS2812_I2C_ADDRESS, (uint8_t *)ws2812_leds, WS2812_LED_COUNT * sizeof(ws2812_led_t), WS2812_I2C_TIMEOUT);
|
2019-10-29 22:53:11 +00:00
|
|
|
}
|