-
Hi! I'm wondering if the LPD8806 can be used as an RGB + CCT chip like the FW1906. Is it possible to do this? I want to use it with WLED. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is already support for LPD8806, but only for RGB. Did you try it (even pixels rgb, odd pixels www for a test)? It's a Two wire chip (data and clock). You are asking about extending it to support Rgbwww then? 10 bit dimming on the LPD8806, that's not correct. It only uses 7 bits, so not even the normal 8 bits. They does NOT take a global dimming value like some other two wire LEDs. Adding Rgbwxx.Rgbwwx/Rgbwww support is pretty trivial. But what do you mean by + CCT? This is a marketing term for app software that premixes colors into the white. Not something this library does, it leaves that up to you when you specify the color with the RGB and (1-3) WWW channels. Find the spec sheets for UCS9812, link them, and I can provide a better answer to how hard it is to support. |
Beta Was this translation helpful? Give feedback.
There is already support for LPD8806, but only for RGB. Did you try it (even pixels rgb, odd pixels www for a test)? It's a Two wire chip (data and clock). You are asking about extending it to support Rgbwww then? 10 bit dimming on the LPD8806, that's not correct. It only uses 7 bits, so not even the normal 8 bits. They does NOT take a global dimming value like some other two wire LEDs.
Adding Rgbwxx.Rgbwwx/Rgbwww support is pretty trivial. But what do you mean by + CCT? This is a marketing term for app software that premixes colors into the white. Not something this library does, it leaves that up to you when you specify the color with the RGB and (1-3) WWW channels.
Find the spec sheets…