JavaScript Properties for RGB Panels

Ask a question about the usage of QLC+ with the Windows operating system
Post Reply
ddsfo
Posts: 1
Joined: Tue May 01, 2018 12:05 am
Real Name: dennis dibart

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!
dascott
Posts: 3
Joined: Wed Oct 16, 2024 4:37 pm
Real Name: Dean Scott

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.
User avatar
GGGss
Posts: 3256
Joined: Mon Sep 12, 2016 7:15 pm
Location: Belgium
Real Name: Fredje Gallon

All electric machines work on smoke... when the smoke escapes... they don't work anymore
User avatar
mcallegari
Posts: 4908
Joined: Sun Apr 12, 2015 9:09 am
Location: Italy
Real Name: Massimo Callegari
Contact:

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.
Post Reply