MCPcopy Create free account
hub / github.com/FastLED/FastLED / loop

Function loop

examples/NoisePlayground/NoisePlayground.h:69–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67}
68
69void loop() {
70 // fill the led array 2/16-bit noise values
71 fill_2dnoise16(leds, kMatrixWidth, kMatrixHeight, kMatrixSerpentineLayout,
72 octaves,x,xscale,y,yscale,v_time,
73 hue_octaves,hxy,hue_scale,hxy,hue_scale,hue_time, false);
74
75 FastLED.show();
76
77 // adjust the intra-frame time values
78 x += x_speed;
79 y += y_speed;
80 v_time += time_speed;
81 hue_time += hue_speed;
82 // delay(50);
83}

Callers

nothing calls this directly

Calls 2

fill_2dnoise16Function · 0.85
showMethod · 0.45

Tested by

no test coverage detected