#include "FastLED.h" #define DATA_PIN 7 #define CLK_PIN 6 #define LED_TYPE APA102 #define COLOR_ORDER GRB #define NUM_LEDS 79 CRGB leds[NUM_LEDS]; #define BRIGHTNESS 96 #define FRAMES_PER_SECOND 120 void setup() { FastLED.addLeds(leds, NUM_LEDS).setCorrection(TypicalLEDStrip); } void loop() { } typedef void (*SimplePatternList[])(); //SimplePatternList gPatterns = { rainbow, rainbowWithGlitter, confetti, sinelon, juggle, bpm }; SimplePatternList gPatterns = {sinelon}; void sinelon() { }