diff --git a/Core/Src/ws2812b_fx.c b/Core/Src/ws2812b_fx.c index 9acec8f..b9a3067 100644 --- a/Core/Src/ws2812b_fx.c +++ b/Core/Src/ws2812b_fx.c @@ -213,7 +213,7 @@ FX_STATUS WS2812BFX_Init(uint16_t Segments) SegmentsTmp[i].IdStart = div; div += ((WS2812B_LEDS + 1) / Segments) - 1; SegmentsTmp[i].IdStop = div; - if(SegmentsTmp[i].IdStop >= WS2812B_LEDS) Ws28b12b_Segments[i].IdStop = WS2812B_LEDS - 1; + if(SegmentsTmp[i].IdStop >= WS2812B_LEDS) SegmentsTmp[i].IdStop = WS2812B_LEDS - 1; div++; } }