| 103 | fl::ScreenMap makeScreenMap(); |
| 104 | |
| 105 | void setup() { |
| 106 | |
| 107 | //Serial.begin(115200); |
| 108 | // Adjust this for you own setup. Use the hardware SPI pins if possible. |
| 109 | // On Teensy 3.1/3.2 the pins are 11 & 13 |
| 110 | // Details here: https://github.com/FastLED/FastLED/wiki/SPI-Hardware-or-Bit-banging |
| 111 | // In case you see flickering / glitching leds, reduce the data rate to 12 MHZ or less |
| 112 | auto screenMap = makeScreenMap(); |
| 113 | FastLED.addLeds<NEOPIXEL, PIXELPIN>(leds, NUM_LEDS).setScreenMap(screenMap); // Pin für Neopixel |
| 114 | FastLED.setBrightness(BRIGHTNESS); |
| 115 | FastLED.setDither(DISABLE_DITHER); |
| 116 | } |
| 117 | |
| 118 | void Fire2023(uint32_t now); |
| 119 |
nothing calls this directly
no test coverage detected