Does anyone know how to map the LED's on an Denon HC4500 controller that light up the Tap/Sync button ( i believe there's a green and an orange LED) and the blue LED under just under the jog wheel? I can't find any entry on the mapping screen for them.
Am I over-looking something? Or are they not defined in the device definition?
Am I over-looking something? Or are they not defined in the device definition?
Mensajes Sun 14 Jun 09 @ 3:53 pm
They are:
LED_TAP_ORANGE
LED_TAP_GREEN
LED_JOGWHEEL
To map them, click {new} in the mapping list, then choose from the Key: drop-down list.
LED_TAP_ORANGE
LED_TAP_GREEN
LED_JOGWHEEL
To map them, click {new} in the mapping list, then choose from the Key: drop-down list.
Mensajes Sun 14 Jun 09 @ 5:05 pm
Thanks for that. What's the correct syntax for getting actions to depend on the state of the players? i.e if both decks are in sync then do xyz? would it be along the lines of :- LED_TAP_ORANGE - play_sync ? on. I want the Orange LED to be on when the decks are sync'd and blink when the pitch is resetting. using play_sync obviously only works when the deck is sync'd & playing, I'd like it to work even if the deck is paused
Mensajes Mon 15 Jun 09 @ 1:51 pm
There isn't a function specifically for that, but you could do it with get beat_num, which is used for the walking beat bar on the skin and on the Numark DMC-2:
This will cause the LED to light when both decks are on the same beat number.
Alternatively, you could map it so that the orange LED flashes to the other deck - When both orange and green flash at the same, the LED lights yellow:
pitch_reset ? on blink : deck 1 get beat_num 1 ? deck 2 get beat_num 1 ? on : deck 1 get beat_num 2 ? deck 2 get beat_num 2 ? on : deck 1 get beat_num 3 ? deck 2 get beat_num 3 ? on : deck 1 get beat_num 4 ? deck 2 get beat_num 4 ? on : off
This will cause the LED to light when both decks are on the same beat number.
Alternatively, you could map it so that the orange LED flashes to the other deck - When both orange and green flash at the same, the LED lights yellow:
pitch_reset ? on blink : action_deck 1 ? deck 2 sync : deck 1 sync
Mensajes Mon 15 Jun 09 @ 2:37 pm
Just wondering how you are getting on with HC4500 new mapper
Mensajes Mon 15 Jun 09 @ 2:41 pm