A little Halloween fun. Made with an old pair of eyes and some LEDs inside in a white silicone tube. 60 SK9822s in total powered by an ESP8266 18650 module.
I used the ESP8266 version
The most useful post was trying out the teensy SPI hack to run four sets of SPI leds from four pins. I only used three sets but it worked and I’d been wanting to try it out for ages. I know there’s no great advantage with bit banging but I wanted to see if it would work.
missing/deleted image from Google+
#define DATA_PIN D8
#define CLK_PIN D5
#define DATA_PIN_2 D7
#define CLK_PIN_2 D5
#define DATA_PIN_3 D6
#define CLK_PIN_3 D7
FastLED.addLeds<LED_TYPE, DATA_PIN, CLK_PIN, COLOR_ORDER, DATA_RATE_MHZ(12)>(LedsLeft, NUM_LEDS);
FastLED.addLeds<LED_TYPE,DATA_PIN_2,CLK_PIN_2,COLOR_ORDER, DATA_RATE_MHZ(12)>(LedsRight, NUM_LEDS);
FastLED.addLeds<LED_TYPE,DATA_PIN_3,CLK_PIN_3,COLOR_ORDER, DATA_RATE_MHZ(12)>(LedsMouth, NUM_LEDS);
Good work, looks great
Your carve lines are a lot smoother than mine haha. Love the eyes!
Thanks @Chris_Parton , the eyes are early prototypes for the masks I make. Your pumpkin is very cool too 