Manually apply white channel to array

This commit is contained in:
Drashna Jael're 2019-12-25 00:02:39 -08:00
parent 20bfd1fc8f
commit 578bf44204
No known key found for this signature in database
GPG Key ID: DBA1FD3A860D1B11

View File

@ -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);
}