From 578bf44204c9feaddc1845606c6e40b292b5e132 Mon Sep 17 00:00:00 2001 From: Drashna Jael're Date: Wed, 25 Dec 2019 00:02:39 -0800 Subject: [PATCH] Manually apply white channel to array --- quantum/rgblight.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/quantum/rgblight.c b/quantum/rgblight.c index 4ae55ae5340..767cf630f46 100644 --- a/quantum/rgblight.c +++ b/quantum/rgblight.c @@ -625,7 +625,9 @@ void rgblight_set(void) { # endif #ifdef RGBW - convert_rgb_to_rgbw(start_led); + for (uint8_t i = 0; i < num_leds; i++) { + convert_rgb_to_rgbw(start_led[i]); + } #endif ws2812_setleds(start_led, num_leds); }