From 4f918564452cc4906075c33f36e32c4d2593449e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Sun, 21 Jun 2020 09:54:38 +0200 Subject: [PATCH] ws2812b: only 6 LEDs are used fot this project --- lib/led_ws2812b.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/led_ws2812b.h b/lib/led_ws2812b.h index 3817ee5..bf31c14 100644 --- a/lib/led_ws2812b.h +++ b/lib/led_ws2812b.h @@ -21,7 +21,7 @@ #pragma once /** number of LEDs on the WS2812B strip */ -#define LED_WS2812B_LEDS 48 +#define LED_WS2812B_LEDS 6 /** setup WS2812B LED driver */ void led_ws2812b_setup(void);