FastLED 3.9.15
Loading...
Searching...
No Matches
Corkscrew.ino
Go to the documentation of this file.
1#include <FastLED.h> // Main FastLED library for controlling LEDs
2
3#if !SKETCH_HAS_LOTS_OF_MEMORY
4// Don't compile this for AVR microcontrollers (like Arduino Uno) because they typically
5// don't have enough memory to handle this complex animation.
6// Instead, we provide empty setup/loop functions so the sketch will compile but do nothing.
7void setup() {}
8void loop() {}
9#else // For all other platforms with more memory (ESP32, Teensy, etc.)
10#include "Corkscrew.h"
11#endif // End of the non-AVR code section
void setup()
Definition Corkscrew.ino:7
void loop()
Definition Corkscrew.ino:8
central include file for FastLED, defines the CFastLED class/object