I did a 5 metre (300) WS2812 led scroller - which looked very pretty

But - could I get a Attiny to do the same? So here is a Rainbow scroller using an ATTINY85 (running at 16MHz)- the trick I use is to generate the colours on the fly rather than using a buffer (which for the 5m display is 900bytes)
Here presented as a 60 led scroller (note that I buffer the colours for the rainbow as 'wheel' took a little too long (although at 19us it was less than the 50us reset time for the LED strip)
This doesn't use the WS2812 component and has my own 'bit-bang' output to pin B0.
It's also a 'request' for the callback feature in V9 - as the colours are generated as required it would make outputting different patterns very easy - just by changing the 'generator' function called...
Martin