FastLED 3.9.15
Loading...
Searching...
No Matches
Audio.ino
Go to the documentation of this file.
1
10
11/*
12This demo is best viewed using the FastLED compiler.
13
14Windows/MacOS binaries: https://github.com/FastLED/FastLED/releases
15
16Python
17
18Install: pip install fastled
19Run: fastled <this sketch directory>
20This will compile and preview the sketch in the browser, and enable
21all the UI elements you see below.
22*/
23
24// #define SIMPLE_EXAMPLE
25
26
27#include <FastLED.h>
28
29#if !SKETCH_HAS_LOTS_OF_MEMORY
30// Platform does not have enough memory
31void setup() {}
32void loop() {}
33#else
34#ifdef SIMPLE_EXAMPLE
35#include "simple/simple.h"
36#else
37#include "advanced/advanced.h"
38#endif
39#endif
void setup()
Definition Audio.ino:31
void loop()
Definition Audio.ino:32
central include file for FastLED, defines the CFastLED class/object