updated libraries
This commit is contained in:
parent
d5d5d000b3
commit
3b7e68065a
102 changed files with 3020 additions and 1624 deletions
18
libraries/FastLED/examples/CompileTest/CompileTest.ino
Normal file
18
libraries/FastLED/examples/CompileTest/CompileTest.ino
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include "FastLED.h"
|
||||
|
||||
#if defined(__AVR__)
|
||||
#include "avr_test.h"
|
||||
#elif defined(ESP32)
|
||||
#include "esp_test.h"
|
||||
#endif
|
||||
|
||||
|
||||
void setup() {
|
||||
Serial.begin(115200);
|
||||
Serial.println("Setup");
|
||||
}
|
||||
|
||||
void loop() {
|
||||
Serial.println("Loop");
|
||||
delay(100);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue