diff --git a/wled00/FX_fcn.cpp b/wled00/FX_fcn.cpp index e5d237df..5af098e7 100644 --- a/wled00/FX_fcn.cpp +++ b/wled00/FX_fcn.cpp @@ -229,7 +229,8 @@ void WS2812FX::show(void) { if(useWackyWS2815PowerModel) { - powerSum += (max(max(max(c.R,c.G),c.B),c.W)) * 3; + // ignore white component on WS2815 power calculation + powerSum += (max(max(c.R,c.G),c.B)) * 3; } else {