Fix up xd002 rgb keymaps (#13685)
parent
567da49ed0
commit
e562238309
@ -1,9 +1,9 @@ |
|||||||
#pragma once |
#pragma once |
||||||
|
|
||||||
#include "ws2812.h" |
#include "ws2812.h" |
||||||
#include "rgblight_list.h" |
#include "color.h" |
||||||
|
|
||||||
static inline void rgblight_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) { |
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}}; |
LED_TYPE leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}}; |
||||||
ws2812_setleds(leds, RGBLED_NUM); |
ws2812_setleds(leds, RGBLED_NUM); |
||||||
} |
} |
||||||
|
@ -1,26 +1,26 @@ |
|||||||
#pragma once |
#pragma once |
||||||
|
|
||||||
#include "ws2812.h" |
#include "ws2812.h" |
||||||
#include "rgblight_list.h" |
#include "color.h" |
||||||
|
|
||||||
static inline void rgblight_setrgb(uint8_t _r, uint8_t _g, uint8_t _b) { |
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}}; |
LED_TYPE leds[RGBLED_NUM] = {{.r = _r, .g = _g, .b = _b}, {.r = _r, .g = _g, .b = _b}}; |
||||||
ws2812_setleds(leds, RGBLED_NUM); |
ws2812_setleds(leds, RGBLED_NUM); |
||||||
} |
} |
||||||
|
|
||||||
static void rgblight_increase_hue(void) { |
static void rgblite_increase_hue(void) { |
||||||
static uint8_t state = 0; |
static uint8_t state = 0; |
||||||
|
|
||||||
state = (state + 1) % 3; |
state = (state + 1) % 3; |
||||||
switch (state) { |
switch (state) { |
||||||
case 1: |
case 1: |
||||||
rgblight_setrgb_red(); |
rgblite_setrgb(RGB_RED); |
||||||
break; |
break; |
||||||
case 2: |
case 2: |
||||||
rgblight_setrgb_blue(); |
rgblite_setrgb(RGB_BLUE); |
||||||
break; |
break; |
||||||
default: |
default: |
||||||
rgblight_setrgb_green(); |
rgblite_setrgb(RGB_GREEN); |
||||||
break; |
break; |
||||||
} |
} |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue