| 31 | void process_water(uint8_t * src, uint8_t * dst) ; |
| 32 | |
| 33 | void setup() { |
| 34 | Serial.begin(115200); |
| 35 | FastLED.addLeds<NEOPIXEL, 2>(leds, NUM_LEDS).setScreenMap(WIDTH, HEIGHT); |
| 36 | } |
| 37 | |
| 38 | // from: https://github.com/FastLED/FastLED/pull/202 |
| 39 | fl::CRGB MyColorFromPaletteExtended(const fl::CRGBPalette16& pal, uint16_t index, uint8_t brightness, TBlendType blendType) { |
nothing calls this directly
no test coverage detected