mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-12-03 08:25:11 +00:00
10 lines
259 B
C
10 lines
259 B
C
#pragma once
|
|
|
|
#include "ws2812.h"
|
|
#include "color.h"
|
|
|
|
static inline void rgblite_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) {
|
|
rgb_led_t leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}};
|
|
ws2812_setleds(leds, RGBLED_NUM);
|
|
}
|