Antonio Spadafora wrote:
> > what led-type do you want to use?
>
> I'm about to install at least six 5 meter strips. Each strip
> contains 160 leds. So I should not be so far away from that
> number.
>
> The strips <> are ws2801 based. Hope it's gonna works.
The WS2801 datasheet says "data and clock can be transmitted up to 6
meters at 2MHz" so you are likely limited to that by the driver.
Each frame starts with 500µs reset, each LED takes 24 bits, one bit
takes 500ns to transmit at 2MHz so each LED takes 12µs. All LEDs:
5*160*24/2000000 = 9.6ms so you can achieve 104Hz refresh with good
software. In practice you will not achieve that, but maybe 60Hz. :)
//Peter