2020-06-10 23:33:26 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "ws2812.h"
|
2021-07-24 16:50:32 +02:00
|
|
|
#include "color.h"
|
2020-06-10 23:33:26 +02:00
|
|
|
|
2021-07-24 16:50:32 +02:00
|
|
|
static inline void rgblite_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) {
|
2020-06-10 23:33:26 +02:00
|
|
|
LED_TYPE leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}};
|
|
|
|
ws2812_setleds(leds, RGBLED_NUM);
|
|
|
|
}
|