The simple but awesome NeoPixel Shield with an Arduino
The folks at Adafruit have put out a nice "NeoPixel shield" which is essentially an 8x5 addressable RGB LED strip built into an Arduino shield. They have created a nice library available on github. You can see the project on their product web page . Here is a picture of the board mounted on an Arduino Uno. The LED in the bottom right corner is LED 0. The LED in the the bottom left corner is node 7. The second row up is node 8-15 and so on. The LED in the upper left corner is node 39. This picture shows the LED panel on my desktop. It totally overwhelmed the camera to the point that the rest of the room looks dark. Firmware I've created simple Arduino firmware that lets you send LED blinky commands over the Serial Port via USB. You can set each pixel color individually along with one of 10 blink patterns. Pattern 0 is off and pattern 1 is solid on so there are 8 actual blink patterns. The firmware is located on github . The ...