cookbook/recipes/README.md
Difficulty Level: ⭐ to ⭐⭐ Beginner to Intermediate Time to Complete: 1-2 hours (to explore all four recipe documents) Prerequisites:
You'll Learn:
This directory contains practical, ready-to-use recipes for common LED effects. Each recipe is self-contained with complete code examples and explanations.
Each recipe is designed to be copied directly into your Arduino sketch. They assume you have:
#include <FastLED.h>
#define NUM_LEDS 60
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<WS2812B, DATA_PIN, GRB>(leds, NUM_LEDS);
FastLED.setBrightness(50);
}
Then simply copy the effect function into your code and call it from your loop() function.
delay() values or beat ratesHave a great recipe to share? Contributions are welcome! Make sure your recipe: