improve output generation

master
King Kévin 8 years ago
parent 66ca3d2652
commit ddb6a24109
  1. 2
      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

Loading…
Cancel
Save