Browse Source

Fix low count of LEDs

master
Mateusz Salamon 5 years ago
parent
commit
2b8b3290cf
  1. 9
      Core/Src/ws2812b_fx.c

9
Core/Src/ws2812b_fx.c

@ -192,7 +192,14 @@ void (*mMode[MODE_COUNT])(void) = @@ -192,7 +192,14 @@ void (*mMode[MODE_COUNT])(void) =
FX_STATUS WS2812BFX_Init(uint16_t Segments)
{
if(Segments == 0 || Segments >= (WS2812B_LEDS / 2)) return FX_ERROR;
if(Segments == 0) return FX_ERROR;
if(Segments > (WS2812B_LEDS / 2))
{
if(Segments > WS2812B_LEDS)
{
return FX_ERROR;
}
}
uint16_t div = 0;
ws2812bfx_s *SegmentsTmp = NULL;

Loading…
Cancel
Save