For this project, Alice and I decided to work together. Our workload ended up being split up something like this: I soldered all of the LED's and worked on all of the coding while Alice did all of the drawing, worked on the frame, and stripped most of the wires linking the LED's together. Overall, I tended to work on the more technical side of things while Alice handled the creative side of the project. Circuit diagram: When wiring up our circuit, we had to bring in an external power source to make sure I wouldn't fry the Arduino and to make sure I have enough power going to the LED strip. Arduino Code: (This is when it was initially tested, so the values for the microphone are subject to change) // LED VARIABLES ======================================================= #include #ifdef __AVR__ #include #endif #define PIN 9 #define NUMPIXELS 113 Adafruit_NeoPixel pixels = Adafruit_NeoPixel(NUMPIXELS, PIN, NEO_GRB + NEO_KHZ800); // Bridge Variabl...