Normal
In your Hyperion config file there's a section where you can change the RGB order:[code]"name" : "MyPi","type" : "adalight","output" : "/dev/ttyACM0","rate" : 460800,"colorOrder" : "grb"[/code]ColorOrder GRB should work correctly for WS2812B however some brands / productions switch that around, so you basically want to swap out R with B there Another way is to change that in the Arduino sketch but if you used the one from the tutorial on the first page that's already fine.
In your Hyperion config file there's a section where you can change the RGB order:
[code]
"name" : "MyPi",
"type" : "adalight",
"output" : "/dev/ttyACM0",
"rate" : 460800,
"colorOrder" : "grb"
[/code]
ColorOrder GRB should work correctly for WS2812B however some brands / productions switch that around, so you basically want to swap out R with B there
Another way is to change that in the Arduino sketch but if you used the one from the tutorial on the first page that's already fine.