Skip to content

Instantly share code, notes, and snippets.

@SigmazGFX
SigmazGFX / 2animations.ino
Created May 18, 2016 19:02 — forked from StefanPetrick/2animations.ino
Simple example of a video cross fade
#include "FastLED.h"
#define NUM_LEDS 144
// have 3 independent CRGBs - 2 for the sources and one for the output
CRGB leds[NUM_LEDS];
CRGB leds2[NUM_LEDS];
CRGB leds3[NUM_LEDS];
void setup() {