FastLED 3.9.15
Loading...
Searching...
No Matches
Async.ino
Go to the documentation of this file.
1#include <Arduino.h>
2#include "fl/sketch_macros.h"
3
4#if SKETCH_HAS_LOTS_OF_MEMORY
5
6#include "./Async.h"
7
8#else
9
10void setup() {
11 Serial.begin(9600);
12}
13
14void loop() {
15 Serial.println("Not enough memory");
16 delay(1000);
17}
18
19#endif
void setup()
Definition Async.ino:10
void loop()
Definition Async.ino:14