- Arduino IDE
- FastLED library (version 3.3.3 used)
- 8 LED strips with 11 RGB LEDs
- Strings of 'Christmas Light' RGB LEDs contains 50 per string
- Arduino Uno
The LED strips are powered by the 5V output of Arduino. The strings are powered by an external power supply with 5V output. The the LED strips and strings are in separate data inputs on Arduino. The actual names of the LEDs are unknown, the types in software are NOT real names of products.
- Dot moving around edges
do_border() - Box moving outward
do_box() - Dot moving through led
do_funny()
Intended use is to display image on matrix.
Current Method
- Create a masterpiece with 8bit colors and 8x11 resolution
- Convert the image into a hexadecimal C array with 256 colors RRRGGGBB https://www.digole.com/tools/PicturetoC_Hex_converter.php
- Copy + Paste is a wonderful tool
- Paste in an
unsigned chararray. - Correct the image with
correct_image(<array>)so it displays properly - Draw the image with
draw_img(<array>) - Call
FastLED.show() - Voila!
