Quick background: I’m a plant and algae scientist, trying to build small light pannels to test growth under different light intensities and combinations of R,G,B,CW, and WW spectra. After some testing, 24V RGB-CCT COB strips will work best for my applications. I’m using the Athom WLED RGBCCT Analog and Digital Controller.
For this analog setup, I want to dial in precise brightness values for each light channel. This is no problem for R,G, and B channels, but I can’t independently control CW and WW channels. This is the best solution I’ve come up with:
{
“on”: true,
“bri”: 255, //global brightness
“seg”: [
{
“id”: 0,
“start”: 0,
“stop”: 1,
“len”: 1,
“grp”: 1,
“spc”: 0,
“of”: 0,
“on”: true,
“frz”: false,
“bri”: 255, //segment brightness
“cct”: 0, //0 for all WW, 255 for all CW
“col”: [[100, 100, 100, 100]], //R,G,B,WW/CW brightness
“fx”: 0
}
]
}
I want to assign a brigthness value for WW and another one for CW, but it seems that the brightness values for WW and CW are lumped together as a single CCT value.
Is there any way to independently control the WW and CW channels??