summaryrefslogtreecommitdiff
path: root/keyboards/xiudi/xd002/keymaps/multilayer_rgb/rgblite.h
blob: 1fa6f899b99de8d0e8f0b0f7a2f37a1c22f83bd8 (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) {
    rgb_led_t leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}};
    ws2812_setleds(leds, RGBLED_NUM);
}