FastLED 3.9.15
Loading...
Searching...
No Matches

◆ loop()

void loop ( )

Definition at line 22 of file Test.ino.

22 {
23 EVERY_N_MILLIS(1000) {
24 Serial.println("Test loop!");
25 }
26 delay(1); // Prevent watchdog timeout on ESP32 qemu tests.
27}
#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

References EVERY_N_MILLIS, and Serial.