FastLED 3.9.15
Loading...
Searching...
No Matches
Test.ino
Go to the documentation of this file.
1
4
5
6
7#include <Arduino.h>
8#include <FastLED.h>
9
10
11// Test configuration
12
13
14void setup() {
15 Serial.begin(115200); // Fast baud for avr8js
16 Serial.println("Test setup starting");
17
18
19 delay(100);
20}
21
22void loop() {
23 EVERY_N_MILLIS(1000) {
24 Serial.println("Test loop!");
25 }
26 delay(1); // Prevent watchdog timeout on ESP32 qemu tests.
27}
void setup()
void loop()
#define EVERY_N_MILLIS(N)
Checks whether to execute a block of code every N milliseconds.
Definition lib8tion.h:1001
#define Serial
Definition serial.h:304