| 67 | } |
| 68 | |
| 69 | void 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 | } |
nothing calls this directly
no test coverage detected