Hi,
I Have reampped a key on my midi controller to work with freestyler .. But I want the Led on the bottem to work when its on and when its off .. I have tried but I don't no what im doing...
Its the cue 4 LED..
Here is the code
For the led to come on on this code
set '$fsvalue' 6 & set '$fscommand' 305
Turn off on this code
set '$fsvalue' 0 & set '$fscommand' 305
So when i press the cue for the code turns the code on with led .. then turn off with led
hope you can understand this
Thanks
I Have reampped a key on my midi controller to work with freestyler .. But I want the Led on the bottem to work when its on and when its off .. I have tried but I don't no what im doing...
Its the cue 4 LED..
Here is the code
For the led to come on on this code
set '$fsvalue' 6 & set '$fscommand' 305
Turn off on this code
set '$fsvalue' 0 & set '$fscommand' 305
So when i press the cue for the code turns the code on with led .. then turn off with led
hope you can understand this
Thanks
Inviato Sun 02 Dec 12 @ 9:07 am
Anyone no anythink ??
Inviato Sun 02 Dec 12 @ 5:46 pm
Send a message to SBDJ he is the guru on this.
Inviato Sun 02 Dec 12 @ 6:17 pm
Off the top of my head I'm thinking something like this:
toggle $ledbutton & var $ledbutton ? set '$fsvalue' 6 & set '$fscommand' 305 : set '$fsvalue' 0 & set '$fscommand' 305
The led definition would then just be:
var $ledbutton
I can have a look tomorrow though.
toggle $ledbutton & var $ledbutton ? set '$fsvalue' 6 & set '$fscommand' 305 : set '$fsvalue' 0 & set '$fscommand' 305
The led definition would then just be:
var $ledbutton
I can have a look tomorrow though.
Inviato Sun 02 Dec 12 @ 9:10 pm
Thanks SB..
So this will turn the LED on.. cus I have to midi eg
The LED is on it own midi to the button..
I have hot cue 4 & LED hot cue 4
So i need a code for the hot cue 4
then an other code for LED hot cue 4
I have a citronic MPX-10 controller .. hope this help SB ?
So this will turn the LED on.. cus I have to midi eg
The LED is on it own midi to the button..
I have hot cue 4 & LED hot cue 4
So i need a code for the hot cue 4
then an other code for LED hot cue 4
I have a citronic MPX-10 controller .. hope this help SB ?
Inviato Mon 03 Dec 12 @ 3:04 am
You would set HOTCUE_4 to:
toggle $ledbutton & var $ledbutton ? set '$fsvalue' 6 & set '$fscommand' 305 : set '$fsvalue' 0 & set '$fscommand' 305
and LED_HOTCUE_4G (or R) to:
var $ledbutton
toggle $ledbutton & var $ledbutton ? set '$fsvalue' 6 & set '$fscommand' 305 : set '$fsvalue' 0 & set '$fscommand' 305
and LED_HOTCUE_4G (or R) to:
var $ledbutton
Inviato Mon 03 Dec 12 @ 2:52 pm
Thanks mate. Will test code weekend :). Top man
Inviato Mon 03 Dec 12 @ 3:41 pm