I want to control the LEDs on the PARAMETER when the PARAMETER button is pressed.
I want the PARAMETER LED to blink fast when the right button on the PARAMETER is pressed.
I want the PARAMETER LED to light up when the left button on the PARAMETER is pressed.
In this case, what kind of scripts should I write for LED_PARAM+ and LED_PARAM-?
I want the PARAMETER LED to blink fast when the right button on the PARAMETER is pressed.
I want the PARAMETER LED to light up when the left button on the PARAMETER is pressed.
In this case, what kind of scripts should I write for LED_PARAM+ and LED_PARAM-?
Posté Sat 01 Jul 23 @ 3:07 am
That depends more on the controller than the specific led
Generally LEDs light up when ever the script on them validates as true
So for instance the play button will light up when the track is playing, if the scripts on it is play, or one of the play variations
On some buttons on some controllers the mapping script for the LED is shared with the script for the button. In those cases it can be a bit harder to figure out a script that both works as the action, and will also validate as true when you want the LED to light up
Here is an example I did a long time ago, which may inspire you
Generally LEDs light up when ever the script on them validates as true
So for instance the play button will light up when the track is playing, if the scripts on it is play, or one of the play variations
On some buttons on some controllers the mapping script for the LED is shared with the script for the button. In those cases it can be a bit harder to figure out a script that both works as the action, and will also validate as true when you want the LED to light up
Here is an example I did a long time ago, which may inspire you
Posté Sat 01 Jul 23 @ 6:40 am