ok, my question is this.. so, say i cut 12 sections of 4 and layer them in rows 1 under the under like this:
XXXX
XXXX
XXXX
XXXX
XXXX
and so on until there is 12 rows.. how do you connect them all together so that you can individually address each one? and then there is the coding part.. but right now i'm stuck on the wiring them and connecting them to the arduino part.
They all get daisy chained, Dout to Din, one chip to the next.
Then use the Adafruit Neopixel library to control them.
Power with an external wallwart, as all on at full bright could draw 60mA x 60 WS28212B = 3.6A.
I have on my desk right now a clock made by LarryD, 4 strips of 15 WS2812B each, all connected head to tail, running a program on a Promini to read time from an RTC module and show the time. Very nice.
The first option will make the wiring slightly less easy, because the data-out wires from each row will have to go back along the strip to the data-in on the next row.
The second option makes the wiring a little easier, as the data-out wire from one row just goes a short way down to the data-in on the second row. However, this way does make your sketch slightly more complicated, because you have to reverse the column numbers in the alternate rows.
and you must connect data-out of 03 to data-in of 04, data-out of 07 to data-in of 08 and so on. For 5V and 0V, connect them any way you like, as long as each strip has both connections.