Skip to content

Instantly share code, notes, and snippets.

@StefanPetrick
StefanPetrick / 2animations.ino
Last active August 17, 2023 17:10
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() {