diff options
author | Josh Rahm <joshuarahm@gmail.com> | 2024-12-01 00:00:33 -0700 |
---|---|---|
committer | Josh Rahm <joshuarahm@gmail.com> | 2024-12-01 00:00:33 -0700 |
commit | a15656b399689d0c7b12963a718729bea9b6dfcc (patch) | |
tree | e1684a6e8f8342e9129aa60e8d78fffd6e18985c | |
parent | 708ce9d264b271ac5eb4a64fcb1e814cbe378ac2 (diff) | |
download | ch573-a15656b399689d0c7b12963a718729bea9b6dfcc.tar.gz ch573-a15656b399689d0c7b12963a718729bea9b6dfcc.tar.bz2 ch573-a15656b399689d0c7b12963a718729bea9b6dfcc.zip |
Remove padding bytes.
-rw-r--r-- | include/ws2812b.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ws2812b.h b/include/ws2812b.h index 2845bc5..cb10979 100644 --- a/include/ws2812b.h +++ b/include/ws2812b.h @@ -4,7 +4,7 @@ #include <stdlib.h> #define WIRE_BYTES_PER_COLOR 9 -#define PADDING_BYTES 2 +#define PADDING_BYTES 0 #define TOTAL_BYTES_PER_LED (PADDING_BYTES + WIRE_BYTES_PER_COLOR) enum ws2812b_byte_order { |