Is there a way I can add or donate samples to fastled project? I mean with the official download. I am so new I am having to make basic stuff and I think it would be helpful to people. Here is an example of code to cycle a strip through colors. I can add the comments to make it much more helpful.
#include “FastLED.h”
#define NUM_LEDS 71
#define DATA_PIN 0
CRGB leds[NUM_LEDS];
static uint8_t hue = 0;
void setup() {
FastLED.addLeds<WS2811, DATA_PIN, GRB>(leds, NUM_LEDS);
}
void loop() {
FastLED.showColor(CHSV(hue++, 255, 128));
delay(50);
}