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

◆ setup()

void setup ( )

Definition at line 43 of file BlurBenchmark.ino.

43 {
44 Serial.begin(115200);
45 delay(100);
46
47 Serial.println("== Gaussian Blur AVR Benchmark (8x8) ==");
48
49 bench<1, 1>("R1 (3x3)");
50 bench<2, 2>("R2 (5x5)");
51 bench<3, 3>("R3 (7x7)");
52 bench<4, 4>("R4 (9x9)");
53
54 Serial.println("== Done ==");
55}
static void bench(const char *label)
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 bench(), and Serial.

+ Here is the call graph for this function: