Hi,
I am working on a ceiling install of about 1400 LEDs, a strip of SK9822, 5v. Actually 3.5 strips daisy chained. I have 4 60A power supplies injected every few feet so I think I have enough power. I don't have a dimming problem, but a breakdown in the serial code around LED #800 or so.
When I run tests, I can get good color representation up to the 800 point and then at that point it responds with incorrect color patterns.
I am controlling the strips with a Mega. It worked really well when I had my prior installation of 300 LEDs. When I swapped, upgraded the strips and went from 30/m to 60/m, I am getting the problems above. My data line is about 8 feet long. I used a sacrificial LED to make sure the signal to the first LED is strong.
Is my issue a lack of memory or speed with the Mega? I haven't had a chance to run speed tests because I can't even get a solid color to display completely. Will I have FPS issues too?
I don't mind the expense of a better/faster controller, but I'm not excited to rewire the control board if that is not my problem.
Thanks for the direction. I was searching for stuff like "max sk9822 length" and kept finding discussions on power injections. Sounds like maybe I need a different controller like a teensy 3...
1400 RGB leds require 4200 bytes of memory (add another 1400 bytes if your strip is RGBW); a Mega should be OK for that.
Speed wise, your refresh will be 50% of the original as you have to update twice as many leds. I'm not familiar with your strip but i doubt a faster processor will give a higher refresh rate; it would definitely not help with a WS2812B strip as updating a single led takes a certain amount of time defined by the led; check the datasheet of your led.
Thanks, yeah, I think the Mega should be able to light them accurately, even if the refresh rate would suck. Something else is going on and I want to get to the bottom of it before I make any controller changes.
The sk9822 is like a APA102 clone. It has separate data and clock lines so allegedly can update faster. I am still trying to figure out if FastLED supports parallel output only for single data lines or if it can also work with the 2-wire data/clock combo...
A trick I have used is to take a few CAN buffers (line driver/ only) input my serial data, it is always on transmig and the receiving ends using them again where they are always on receive. I see no reason you cannot get several thousand feet. Do not forget to put termination 120 Ohm resistors on the two physical ends of the bus.
I have a really weird update. Since all my problems were occurring not far from the halfway point, I broke the daisy chain halfway through to independently test the second half of the strip.
I was getting nothing out of the LEDs at all. Since the test was with temporary connections to the data/clock lines (power feeds remained the same), I was checking my temporary wire twists on the data lines. Lo and behold, if I physically touch the DATA line, the strips work perfectly. But, if I do not touch the data line, nothing at all...
What does this mean? Some kind of grounding issue? I've tested the whole circuit and everything between all power supplies are grounded together. Something is amiss but I cannot think of what to even test!
Here is a pic, kind of hard to get a good one as it is all post-install.
This is just the junction point between the first and second halfs of the strip.
I tried adding a resistor when I tested the back half of the strip too and it works fine. So I can run either the first half or the second half independently without issue. But if I daisy chain them together the strip wigs out about 50 LEDs into it. Frustrating...