summaryrefslogtreecommitdiff
path: root/keyboards/xiudi/xd002/keymaps/multilayer_rgb/rgblite.h
blob: 8a14a8f9560e52104fcf70201e72fdaed9a18b5e (plain)
1
2
3
4
5
6
7
8
9
#pragma once

#include "ws2812.h"
#include "color.h"

static inline void rgblite_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);
}