I tested Cyclon it is not readfast but fast enough. only the leds are green and not red:
leds[i] = CRGB::Red;
This is my red: leds[i] = CRGB::Green;
So how do I change the collor order?
Only I assume my controller is to slow to calc a rainbow and display is. What is a faster alternative?
I tried to make red in my program:
for(int i = 0; i < NUM_LEDS; i++) {
// Set the i’th led to red
leds[i] = CRGB(255,0,0);
}
The result is yellow.
I played with: the order of: #define COLOR_ORDER GRB
But this is correct for the other collors. Very strange.
Your 5V 12A power supply is fine for 120 LEDs. So what else could be causing flickering… Do you have the ground from the strip connected to ground on the controller?
For the color order issue, have you run the RGB calibrate sketch?
The flicker is only with the rainbox. I think it is gHue going through zero.
I run RGBcalibrate. There is some green in my red.
Green + red = yellow.
So somehow green is always on.
leds[1] = CRGB(0,0,0); This also displays green.
So is there any collor correction functie?
Sounds like something isn’t working if you’re not able to get the RGB colors to display correctly with the calibrate sketch. I would try to get that sorted out before going to much further with other stuff.