From ddb6a24109adaadee5b22d588e85c2c63d286546 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Thu, 23 Jul 2015 10:45:15 +0200 Subject: [PATCH] improve output generation --- firmware/lib/ws2812b.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/lib/ws2812b.c b/firmware/lib/ws2812b.c index e481730..34c3d18 100644 --- a/firmware/lib/ws2812b.c +++ b/firmware/lib/ws2812b.c @@ -169,7 +169,7 @@ void ws2812b_show(void) uint8_t high = WS2812B_PORT | WS2812B_MASK; // set all WS2812B pins to high uint8_t low = WS2812B_PORT & ~WS2812B_MASK; // set all WS2812B pins to low uint8_t * next = color_bits; // a pointer to the next color bit - uint8_t out = low | *(next++); // the next bit to send + uint8_t out = *(next++); // the next bit to send while (!reset_code); // wait for previous reset code to finish