15 lines
220 B
C++
15 lines
220 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include <Arduino.h>
|
|
#include <FastLED.h>
|
|
|
|
FASTLED_USING_NAMESPACE
|
|
|
|
class Pattern;
|
|
|
|
constexpr auto pin = 0;
|
|
constexpr auto NUM_LEDS = 250;
|
|
using LedContainer = std::array<CRGB, NUM_LEDS>;
|