You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_consistent = nr < WLED_MAX_RMT_CHANNELS || _skip > 0; // TODO: no longer needed once neopixelbus#905 (or similar) is merged or use https://github.com/blazoncek/NeoPixelBus.git#clearto-buffers
158
158
_iType = PolyBus::getI(bc.type, _pins, nr);
159
159
if (_iType == I_NONE) { DEBUGBUS_PRINTLN(F("Incorrect iType!")); return; }
160
+
_scale = bc.scale;
160
161
_hasRgb = hasRGB(bc.type);
161
162
_hasWhite = hasWhite(bc.type);
162
163
_hasCCT = hasCCT(bc.type);
@@ -247,7 +248,8 @@ void BusDigital::setPixelColor(unsigned pix, uint32_t c) {
247
248
if (!_valid || pix >= _len) return;
248
249
if (hasWhite()) c = autoWhiteCalc(c);
249
250
if (Bus::_cct >= 1900) c = colorBalanceFromKelvin(Bus::_cct, c); //color correction from CCT
0 commit comments