rgblite.h 267 B

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