de-optimization

first version still cased some flickering.
This de-optimization makes LEDs more stable.
pull/3274/head
Frank 2023-07-03 14:01:45 +02:00
rodzic 9b87892036
commit 65e073e6b8
1 zmienionych plików z 4 dodań i 2 usunięć

Wyświetl plik

@ -1230,11 +1230,13 @@ void WS2812FX::estimateCurrentAndLimitBri() {
uint16_t scaleI = scale * 255;
uint8_t scaleB = (scaleI > 255) ? 255 : scaleI;
uint8_t newBri = scale8(_brightness, scaleB);
busses.setBrightness(newBri, (scaleB < 255)); //to keep brightness uniform, sets virtual busses too - softhack007: apply reductions immediately
// to keep brightness uniform, sets virtual busses too - softhack007: apply reductions immediately
//busses.setBrightness(newBri, (scaleB < 255)); // best for performance, but leaves some flickering
busses.setBrightness(newBri, true); // sub-optimal, but prevents flickering
currentMilliamps = (powerSum0 * newBri) / puPerMilliamp;
} else {
currentMilliamps = powerSum / puPerMilliamp;
busses.setBrightness(_brightness);
busses.setBrightness(_brightness, true); // immediate = true is needed to prevent flickering
}
currentMilliamps += MA_FOR_ESP; //add power of ESP back to estimate
currentMilliamps += pLen; //add standby power back to estimate