I am having a strange behavior with my led strip that I converted to ESPHome. I build a Nanoleaf Replica and was using this Fastled implementation with it: https://github.com/NimmLor/esp8266-fastled-iot-webserver, however, it integrated with HomeAssistant via MQTT, and was the only device that used it so I decided to move to ESPHome as I have other Led devices using it.
When I converted it to the ESPHome Fastled implementation the end of the strip with 100% power. If I set the brightness to 100% and the color to white the end of the strip becomes yellowish. If a turndown the brightness level to 60% I get color consistency.
I had similar problem with long WS2812B string. It was related to poor (to long) ground and power lines. Solution was powering from both ends of string.
You can see this behavior when they test 5v strips with power on only one end. You can also inject 1/2 by soldering on to the power lines at a cut point.
As said before, you’re not powering the led strip correctly. Unfortunately you’re not describing your strip. It largely depends on what specs this strip has on how you to handle this power issue.
The lower the voltage, the higher the current that is running through your strip. If you have a 5V strip, you def. need to power the strip at least every 2.5m to 3m. With 12V or 24V it is not that big of a matter, but even there you should calculate what current is flowing through your strip.
And last but not least: this is electricity. You can easily fry something or set it on fire, if you don’t work exact with these things. And it doesn’t matter, how big the part is, that caught fire, it may be big enough to lite up your house… Not meant offensive, but to many people had damaged something, just out of nescience!
Thanks all for the reply I run some more tests here. I installed back the FastLed and played with its built-in power management and that is the difference.
Functions
void set_max_power_in_volts_and_milliamps (uint8_t volts, uint32_t milliamps)
Set the maximum power used in milliamps for a given voltage. More...
When I set it to 5V and 5A it is limiting the maximum brightness to a level that would be the equivalent of 60% of the output from ESP Home, so I managed to use the color_correct to limit it to a value that works fine.
I injected power on the other end of the strip and got the colors working, however, the transitions were strange, every time it transitioned to a new color I got a white flash of pure white.
I managed to solve that by reducing the maximum output to 80%, which was a good thing with 100% output I was consuming 6A of my 5A 5V adaptor. Now I am using just under 4A giving me a good safety margin.