I have seen it in my learning but can not find it at the moment. I have a strand where the red and green are backwards. How do I change that?
#include “FastLED.h”
#define NUM_LEDS 70
#define DATA_PIN 0
CRGB leds[NUM_LEDS];
void setup() {
FastLED.addLeds<NEOPIXEL, DATA_PIN>(leds, NUM_LEDS);
}
FastLED.addLeds<NEOPIXEL, DATA_PIN, RGB>(leds, NUM_LEDS);
Your RGB order goes after the data pin assign in the addLED. My strips are RBG, so thats what I put there.
You can read about the color settings in the RGB Calibrate Example program - included with the FastLED library.
got it thanks. Didn’t realize the rgb calibrate was for that.