Page 1 of 1

JavaScript Properties for RGB Panels

Posted: Tue May 01, 2018 6:08 am
by ddsfo
I am using QLC Plus 4.11 for controlling a RGB LED Panel with my own javascripts.

While mostly successful, I can not read the variable in the push statement when it is
type "range". type "list" works fine.

algo.arrowHt = 3;
algo.properties.push("name:arrowHt|type:range|display:ArrowHeight|values:1,5|write:setArrowHt|read:getArrowHt");

algo.setArrowHt = function(_ht)
{
algo.arrowHt = _ht;
};

algo.getArrowHt = function()
{
return algo.arrowHt;
};

a simple assigment in the function that generates the algo.rgbMap does not work:

var yDia = algo.arrowHt;

and lastly, 2 other hopefully easy questions:

how to i read the user selected start and end colors?

for the push statements for property types "integer" and "string" , do i eliminate the "|values:" attribute entirely or
include it as i just wrote without any entries for values?

thanks much!

Re: JavaScript Properties for RGB Panels

Posted: Thu Oct 17, 2024 8:55 pm
by dascott
I'm in the same boat needing to read the second or end color in a custom RGBscript pattern. I asked this yesterday in the General forum and see that no one has responded to your question for over 6 years! Thanks community. So not helpful. I bet you're a LONG ways past this by now, gave up, or found a different way to get help with the code. I deduced that the variable, rgb, is the first/start color, but await a response as to how to read the second/end color, since there's no explicit variable that I can see for such.

Anyway, just chiming in to refresh this topic.

Re: JavaScript Properties for RGB Panels

Posted: Fri Oct 18, 2024 7:59 am
by GGGss

Re: JavaScript Properties for RGB Panels

Posted: Fri Oct 18, 2024 8:13 am
by mcallegari
dascott wrote: Thu Oct 17, 2024 8:55 pm I'm in the same boat needing to read the second or end color in a custom RGBscript pattern. I asked this yesterday in the General forum and see that no one has responded to your question for over 6 years! Thanks community. So not helpful. I bet you're a LONG ways past this by now, gave up, or found a different way to get help with the code. I deduced that the variable, rgb, is the first/start color, but await a response as to how to read the second/end color, since there's no explicit variable that I can see for such.
First and foremost, there's no need to be rude or unpolite in these forums.
A work is in progress on GitHub to address this need: https://github.com/mcallegari/qlcplus/pull/1422
You can use the automated builds to experiment with the latest additions.