| 123456789101112131415161718192021222324252627 |
- // Copyright 2022 Makoto Kurauchi (@MakotoKurauchi)
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- #include "ws2812.h"
- #include "color.h"
- static inline void rgblite_init(void) {
- ws2812_init();
- }
- static inline void rgblite_setrgb(RGB rgb) {
- rgb_led_t leds[RGBLIGHT_LED_COUNT] = {{.r = rgb.r, .g = rgb.g, .b = rgb.b}};
- ws2812_setleds(leds, RGBLIGHT_LED_COUNT);
- }
- static void rgblite_increase_hue(void) {
- static uint8_t state = 0;
- HSV hsv = { 255, 255, 255 };
- hsv.h = state;
- state = (state + 8) % 256;
- rgblite_setrgb(hsv_to_rgb(hsv));
- }
|