updated libraries

This commit is contained in:
stuce-bot 2025-06-30 21:41:49 +02:00
parent d5d5d000b3
commit 3b7e68065a
102 changed files with 3020 additions and 1624 deletions

View 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);
}