Ws2812b wrong colors

hello i new to arduino,
i just finished my first project following the instructions on youtube, but it seems my led strip got confused between green and blue and only red color is correct .
How can I make it work properly?
sorry for my english
thanks!

the code im used on my project: https://github.com/hansjny/Natural-Nerd/tree/master/Hexaleaf

images: https://imgur.com/a/8p3xRz3

Maybe you should ask the author of the code?

Pete.

1 Like

On my last LED project I used this statement to initialize the LED array:
LEDS.addLeds<LED_TYPE, LED_PIN, COLOR_ORDER>(leds, NUM_LEDS*2);
where the following definitions were used:

#define NUM_LEDS 30 // per string
#define LED_TYPE WS2812B
#define COLOR_ORDER GRB
CRGB leds[NUM_LEDS*2]; // allow string daisy chaining

Note that the order I used for the LED arrarys I used was GRB.

Cheers,
Mike S.