We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aa970d6 + 9ffcde8 commit d18f078Copy full SHA for d18f078
wled00/bus_manager.cpp
@@ -505,7 +505,7 @@ void BusPwm::show() {
505
uint8_t numPins = NUM_PWM_PINS(_type);
506
unsigned maxBri = (1<<_depth) - 1;
507
#ifdef ESP8266
508
- unsigned pwmBri = (unsigned)(roundf(powf((float)_bri / 255.0f, 1.7f) * (float)maxBri + 0.5f)); // using gamma 1.7 to extrapolate PWM duty cycle
+ unsigned pwmBri = (unsigned)(roundf(powf((float)_bri / 255.0f, 1.7f) * (float)maxBri)); // using gamma 1.7 to extrapolate PWM duty cycle
509
#else
510
unsigned pwmBri = cieLUT[_bri] >> (12 - _depth); // use CIE LUT
511
#endif
0 commit comments