blob: ddc61d5f43414b4719445097a9f4c9e6a9820865 (
plain)
1
2
3
4
5
6
7
8
9
|
#pragma once
#include "ws2812.h"
#include "rgblight_list.h"
static inline void rgblight_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) {
LED_TYPE leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}};
ws2812_setleds(leds, RGBLED_NUM);
}
|