Fix initialization bug when toggling skip first.
This commit is contained in:
parent
9bc48ececa
commit
c28027496d
@ -29,11 +29,11 @@
|
|||||||
|
|
||||||
void WS2812FX::init(bool supportWhite, uint16_t countPixels, bool skipFirst)
|
void WS2812FX::init(bool supportWhite, uint16_t countPixels, bool skipFirst)
|
||||||
{
|
{
|
||||||
if (supportWhite == _useRgbw && countPixels == _length) return;
|
if (supportWhite == _useRgbw && countPixels == _length && _skipFirstMode == skipFirst) return;
|
||||||
RESET_RUNTIME;
|
RESET_RUNTIME;
|
||||||
_useRgbw = supportWhite;
|
_useRgbw = supportWhite;
|
||||||
_skipFirstMode = skipFirst;
|
|
||||||
_length = countPixels;
|
_length = countPixels;
|
||||||
|
_skipFirstMode = skipFirst;
|
||||||
|
|
||||||
uint8_t ty = 1;
|
uint8_t ty = 1;
|
||||||
if (supportWhite) ty = 2;
|
if (supportWhite) ty = 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user