From 47885d62b689bececb58b7bf9479a5c1ff1c9b5c Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Tue, 3 Dec 2024 22:31:31 -0700 Subject: Small fixes for the difference between RGB and GRB data formats. --- include/ws2812b.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') diff --git a/include/ws2812b.h b/include/ws2812b.h index e814b65..2061379 100644 --- a/include/ws2812b.h +++ b/include/ws2812b.h @@ -9,7 +9,7 @@ enum ws2812b_byte_order { BYTE_ORDER_RGB = 0, - BYTE_ORDER_GBR = 1, + BYTE_ORDER_GRB = 1, }; struct ws2812b_buf { -- cgit