From f5e15a5a2d55cf0a6fbdbe04e5c49499a6eac642 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 3 Dec 2024 10:35:55 -0700 Subject: Basic Christmas light implementation! --- include/ws2812b.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ws2812b.h') diff --git a/include/ws2812b.h b/include/ws2812b.h index cb10979..e814b65 100644 --- a/include/ws2812b.h +++ b/include/ws2812b.h @@ -4,11 +4,11 @@ #include #define WIRE_BYTES_PER_COLOR 9 -#define PADDING_BYTES 0 +#define PADDING_BYTES 1 #define TOTAL_BYTES_PER_LED (PADDING_BYTES + WIRE_BYTES_PER_COLOR) enum ws2812b_byte_order { - BYTE_ORDER_BGR = 0, + BYTE_ORDER_RGB = 0, BYTE_ORDER_GBR = 1, }; -- cgit