FastLED 3.9.15
Loading...
Searching...
No Matches
NoisePlusPalette.ino

OVERVIEW: This sketch demonstrates combining Perlin noise with color palettes to create dynamic, flowing color patterns on an LED matrix.

OVERVIEW: This sketch demonstrates combining Perlin noise with color palettes to create dynamic, flowing color patterns on an LED matrix. The noise function creates natural-looking patterns that change over time, while the color palettes determine which colors are used to visualize the noise values.

#include <FastLED.h> // Main FastLED library for controlling LEDs
#if !SKETCH_HAS_LOTS_OF_MEMORY
// Don't compile this for AVR microcontrollers (like Arduino Uno) because they typically
// don't have enough memory to handle this complex animation.
// Instead, we provide empty setup/loop functions so the sketch will compile but do nothing.
void setup() {}
void loop() {}
#else // For all other platforms with more memory (ESP32, Teensy, etc.)
#endif // End of the non-AVR code section
void setup()
void loop()
central include file for FastLED, defines the CFastLED class/object