Ingreso rápido:  

Forum: VirtualDJ Technical Support

Tema: Controller Button LED on/off
Hi all,

On my hardware controller, I have remapped the "WHEEL" button (usually toggles VINYL mode) to toggle mute a set of stems on the current deck. Problem is that now the LED in the button stays illuminated all the time. Is there a way to turn the light off when the stems are muted and back on when they're not? Would be helpful to have a visual indicator when that deck has those stems muted.

Thanks!
 

Mensajes Fri 24 Dec 21 @ 11:23 pm
Would help to know the controller you are using.

What is the mapping of LED_VINYL in your current mapping? (or something similar, or maybe in your case LED_WHEEL)
You should be able to map it to the stems you are muting, if the controllers allows midi to control that LED, which I guess is the case.
 

Mensajes Fri 24 Dec 21 @ 11:44 pm
Ahh thanks! It's the Numark Mixtrack Platinum.

The current script in LED_WHEEL is:

slip_mode ? get_slip_active ? blink : vinyl_mode : vinyl_mode

while WHEEL is:

mute_stem "Melody"

How can I query the mute status of Melody and map that to the LED?

Thanks again and happy holidays.
 

Mensajes Fri 24 Dec 21 @ 11:58 pm
Figured it out. For anyone else, the working script in LED_WHEEL is:

mute_stem "Melody" ? off : on
 

Mensajes Sat 25 Dec 21 @ 4:09 am