home
products
contribute
download
documentation
forum
Home
Forums
New posts
Search forums
What's new
New posts
All posts
Latest activity
Members
Registered members
Current visitors
Donate
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Search titles only
By:
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
HTPC Projects
Hardware
Ambient Lighting System
[DIY] User Showcases
[DIY] Selfmade AmbiLight using LED Strings
Contact us
RSS
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="kenwonders" data-source="post: 1065180" data-attributes="member: 29743"><p>I feel for ya HomeY, it took me 4 days to get a colour out of them that I had actually asked for.</p><p></p><p>If you have covered power and direction, looks like your next culprit is the addLEDS call, perhaps try different settings there like</p><p>addLeds<WS2812, DATA_PORT, GRB>(leds, NUM_LEDS);</p><p></p><p>or change WS2812 to WS281_400 which according to the FastLED header is the 400khz version of the same thing:</p><p></p><p>[CODE] case WS2812:</p><p> case WS2812B:</p><p> case WS2811: { static WS2811Controller800Khz<DATA_PIN> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }</p><p> case NEOPIXEL: { static WS2811Controller800Khz<DATA_PIN, GRB> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }</p><p> case WS2811_400: { static WS2811Controller400Khz<DATA_PIN> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }[/CODE]</p><p></p><p>if you have the RGB order wrong, this will just mean the wrong colours (or it did for me), so I'd worry about that once they light up at all.</p></blockquote><p></p>
[QUOTE="kenwonders, post: 1065180, member: 29743"] I feel for ya HomeY, it took me 4 days to get a colour out of them that I had actually asked for. If you have covered power and direction, looks like your next culprit is the addLEDS call, perhaps try different settings there like addLeds<WS2812, DATA_PORT, GRB>(leds, NUM_LEDS); or change WS2812 to WS281_400 which according to the FastLED header is the 400khz version of the same thing: [CODE] case WS2812: case WS2812B: case WS2811: { static WS2811Controller800Khz<DATA_PIN> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } case NEOPIXEL: { static WS2811Controller800Khz<DATA_PIN, GRB> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); } case WS2811_400: { static WS2811Controller400Khz<DATA_PIN> controller; return addLeds(&controller, data, nLedsOrOffset, nLedsIfOffset); }[/CODE] if you have the RGB order wrong, this will just mean the wrong colours (or it did for me), so I'd worry about that once they light up at all. [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
HTPC Projects
Hardware
Ambient Lighting System
[DIY] User Showcases
[DIY] Selfmade AmbiLight using LED Strings
Contact us
RSS
Top
Bottom