#include <WS2812FX.h>
#include <FastLED.h>
#define LED_COUNT 72
#define LED_PIN 2
WS2812FX ws2812fx = WS2812FX(LED_COUNT, LED_PIN, NEO_GRB + NEO_KHZ800);
void setup() {
ws2812fx.init();
ws2812fx.setColor(0x6A0DAD);
ws2812fx.setBrightness(50); // Max brightness to clearly see in the simulator
ws2812fx.setMode(FX_MODE_BREATH);
ws2812fx.start();
}
void loop() {
ws2812fx.service();
}