aboutsummaryrefslogtreecommitdiff
path: root/include/ws2812b.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ws2812b.h')
-rw-r--r--include/ws2812b.h4
1 files changed, 2 insertions, 2 deletions
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 <stdlib.h>
#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,
};