20 lines
235 B
C++
20 lines
235 B
C++
#include <Arduino.h>
|
|
#include "fl/sketch_macros.h"
|
|
|
|
#if SKETCH_HAS_LOTS_OF_MEMORY
|
|
|
|
#include "./Wave.h"
|
|
|
|
#else
|
|
|
|
void setup() {
|
|
Serial.begin(9600);
|
|
}
|
|
|
|
void loop() {
|
|
Serial.println("Not enough memory");
|
|
delay(1000);
|
|
}
|
|
|
|
#endif
|