Modular Pixel Wall
thingiverse
This is a project I have had in my head for a while and finally decided to bring it to life. This is a very simple print that can be made as large as you want based on how much soldering you are willing to do. Each section is a 4x4 chunk that has a way to align consecutive pieces. There is a second STL file that acts as a final "cap" to close off the end. I use CA glue to hold the sections together, which worked for me quite well. The LED strips I used are available at this link: https://www.aliexpress.com/item/2036819167.html Choose WS2812B 5m 30 IP30 For a simple test Arduino Sketch try this, just remove the parentheses around the number symbol on the first three lines: #include "FastLED.h" #define PIN 4 #define NUM_LEDS 128 CRGBArray<NUM_LEDS> leds; uint8_t hue[NUM_LEDS]; void setup(){ FastLED.addLeds<NEOPIXEL, PIN>(leds, NUM_LEDS); for(int i = 0; i <NUM_LEDS; i++) { hue[i] = 255 / NUM_LEDS * i; } } void loop() { for (int i = 0; i < NUM_LEDS; i++){ leds[i] = CHSV(hue[i]++, 255, 255); } FastLED.show(); delay(10); }
With this file you will be able to print Modular Pixel Wall with your 3D printer. Click on the button and save the file on your computer to work, edit or customize your design. You can also find more 3D designs for printers on Modular Pixel Wall.