FastLED 3.9.15
Loading...
Searching...
No Matches
Test.ino
#include <Arduino.h>
#include <FastLED.h>
// Test configuration
void setup() {
Serial.begin(115200); // Fast baud for avr8js
Serial.println("Test setup starting");
delay(100);
}
void loop() {
Serial.println("Test loop!");
}
delay(1); // Prevent watchdog timeout on ESP32 qemu tests.
}
void setup()
void loop()
#define EVERY_N_MILLIS(N)
Checks whether to execute a block of code every N milliseconds.
Definition lib8tion.h:1001
void delay(u32 ms, bool run_async=true) FL_NOEXCEPT
Public delay wrapper that keeps bare Arduino delay() preferred after using fl::delay; while still all...
Definition delay.h:98
#define Serial
Definition serial.h:304