| 53 | fl::XYPathPtr heartPath = fl::XYPath::NewHeartPath(WIDTH, HEIGHT); |
| 54 | |
| 55 | void setup() { |
| 56 | Serial.begin(115200); |
| 57 | auto screenmap = xyMap.toScreenMap(); |
| 58 | screenmap.setDiameter(.2); |
| 59 | FastLED.addLeds<NEOPIXEL, 2>(leds, NUM_LEDS).setScreenMap(screenmap); |
| 60 | } |
| 61 | |
| 62 | void loop() { |
| 63 | // leds(x,y) = fl::CRGB(255, 0, 0); |
nothing calls this directly
no test coverage detected