| 95 | } |
| 96 | |
| 97 | void setup() { |
| 98 | Serial.begin(115200); |
| 99 | auto screenmap = xyMap.toScreenMap(); |
| 100 | screenmap.setDiameter(.2); |
| 101 | FastLED.addLeds<NEOPIXEL, 2>(leds, NUM_LEDS).setScreenMap(screenmap); |
| 102 | setupUiCallbacks(); |
| 103 | // Initialize wave simulation. Please don't use static constructors, keep it |
| 104 | // in setup(). |
| 105 | trigger.click(); |
| 106 | wave_fx = NewWaveSimulation2D(xyMap); |
| 107 | } |
| 108 | |
| 109 | //////////////////// LOOP SECTION ///////////////////////////// |
| 110 |
nothing calls this directly
no test coverage detected