I have a strip of addressable LEDs, and an ESPHome firmware installed on an RPi Pico W to control it. The LEDs don’t turn on at all if the brightness ≤10%. Is there any way to remap 1% brightness to 11%, as that’s the lowest value the LEDs turn on at?
Everything is on the latest version. My ESPHome config:
Probably multiple ways. First time I heard of rp2040_pio_led_strip.
You could try to play with gamma_correct.
Or make simple automation to adjust % on_state.
Or use some template in the middle.
I had too high a protective resistor in the data line (470 Ohm), so that the light only came on at 25%. I reduced the resistance until I could start with 1% brightness (190 Ohm in my case).
Various sources online recommend a resistor in the data line, supposedly to protect the first LED. I don’t remember the exact reasoning, but apparently, if the controller and the LED strip power supply are powered by different power supplies and turn on at different times, the first LED can supposedly burn out.
Although I always connect everything to a single power supply, I installed this protective resistor as a precaution, and it turned out to be rather harmful (the light only turned on at 25%, and there were strange effects below).
I don’t really understand how this works, since the data line doesn’t carry an analog light intensity signal, but rather a numerical combination that contains the brightness for each LED, but that was the observed effect. With a 470 ohm series resistor (+ cable), the LED strip was only reasonably controllable from 25-30% brightness, and as the series resistor decreased, the required starting brightness level also decreased. However, I expect a similarly disruptive effect if cables and connectors lead to a to high resistance in the data line.
That resistor serves for protection, like some errors in wiring. It also helps to give smoother signal. But in case you power your LEDs at 5V and control them at 3.3V (out of specs), high value resistor can cause problems.