Jaycar-Electronics / WiFi-Controlled-Strip-Lighting

Control some dazzling RGB effects with ESP8266 and Vue.js web app!
7 stars 0 forks source link

Color offsets #2

Closed wrexy1994 closed 4 years ago

wrexy1994 commented 4 years ago

I have found that in my setup, the colors need to be set BBRRGG, instead of RRGGBB. For example, to get blue on the solid/single, I need to enter FF0000. Any ideas?

Jaycar-Electronics commented 4 years ago

This is just gonna be related to the data ordering. If you look at line 51 of the ino, you'll see that it's set to NEO_RGB. try setting this to NEO_BRG; does this change?

I'm not sure if the adafruit have BRG, so if you get "NEO_BRG" not defined, we'll have to look at either creating it or changing the order elsewhere. I will try out later today.

Jaycar-Electronics commented 4 years ago

We've tried setting BRG in the controller.ino in the latest version 43e4996

let us know if that fixes it

cheers