-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First LED in addressable string does not fade when using scheme #10038
Comments
As was probably noted in the previous issue too this is a hardware failure. The string needs to receive the correct voltage and signal levels. In your case the first led will fix the signal levels for the next leds in the string. Revisit your power source, voltage level (shift), serial resistor etc. |
Oh and I'm not sure a WS2811 is supported. A WS2812 is supported. |
Closing this issue as it has been answered. Support InformationSee Docs for more information. |
My PSU is delivering 5.00V to the LED chain according to my DMM. The supply is rated at 3A. The cable is the manufacturer's own and is only 20cm long. |
The point about voltage is not the power supply, but what signal voltage is used on the data pin. Most neopixel leds need 5v here (possibly less if it supports power lower than 5v), but ESP8266 only has 3.3v on outputs. One way of bridging this gap would be to use a level shifter, transforming the signal to another voltage. |
I saw a major improvement after inserting a level shifter to get the signal to 5V. |
Is this more about the LEDs not being able to keep up with the fast data rate when the data voltage is a spit on the low side? |
I'd expect it to be an issue of the trigger voltage for detecting if bits are on or off. One not very good attempt could be if you can lower the power voltage, as detection of high bits often is relative to the power level, sometimes like 0.7 * vcc, which would be 3.5v. |
As Theo noted, the first LED usually sorts the levels. You can even add an extra hidden one to use as an improv level shifter, by powering it with 3.3v, sharing a ground with the rest of the chain. In practice, I've always managed to get away with 3.3v signalling and 5v power on the strip. But, where the strip is grounded in relation to the the boards ground can upset the apple cart. |
I was able to duplicate the issue on known-good hardware. |
…licks colors instead of fading)
This is a fix for issue #10038 (first LED in a WS2812 string flicks c…
PROBLEM DESCRIPTION
When using an addressable LED string, the fade is not happening for the first LED in the string. Instead, the LED flicks to the next colour in the sequence, while all the others fade.
This has been observed previously as issue #3480, but folk stopped reporting so the issue went stale. one user reported solving it by replacing the LED, but I'm not sure this wasn't coincidental.
REQUESTED INFORMATION
Backlog Template; Module; GPIO 255
:Backlog Rule1; Rule2; Rule3
:Status 0
:(Please use
weblog 4
for more debug information)TO REPRODUCE
Connect a LED WS2811 chain
set fade
set scheme (eg 7)
EXPECTED BEHAVIOUR
I would expect all LEDs to fade in sequence. Instead, only 49 of 50 do.
SCREENSHOTS
If applicable, add screenshots to help explain your problem.
ADDITIONAL CONTEXT
If I select the colour on the web interface front panel, ALL the LEDs fade. I suspect the problem is with the scheme routine, rather than the fading routine.
(Please, remember to close the issue when the problem has been addressed)
The text was updated successfully, but these errors were encountered: