登录:     


Forum: VirtualDJ Technical Support

Topic: Question about Akai LPD8 mk2 mapping
This is my mapping for the Akai LPD8 Mk2 (for the new plugin "VideoRotation")

It works except for the blinking of PAD_5 to PAD_8,
each PAD button causes the flashing but it is always the PAD button 5 that flashes.
Who has an idea why this is (where is the error in my mapping) ???


K1 > PROG1_KNOB_1 > deck master & effect_select "videorotation" & effect_active & effect_slider 1 1
K2 > PROG1_KNOB_2 > deck master & effect_select "videorotation" & effect_active & effect_slider 1 2
K3 > PROG1_KNOB_3 > deck master & effect_select "videorotation" & effect_active & effect_slider 1 3
K4 > PROG1_KNOB_4 > deck master & effect_select "videorotation" & effect_active & effect_slider 1 4

PAD1 > PROG1_PAD_1 > deck master effect_show_gui 'videorotation'
PAD5 > PROG1_PAD_5 > deck master & effect_select "videorotation" & effect_active & effect_button 1
PAD6 > PROG1_PAD_6 > deck master & effect_select "videorotation" & effect_active & effect_button 2
PAD7 > PROG1_PAD_7 > deck master & effect_select "videorotation" & effect_active & effect_button 3
PAD8 > PROG1_PAD_8 > deck master & effect_select "videorotation" & effect_active & effect_button 4


associated lighting

LED_PAD_1 > deck master effect_show_gui 'videorotation' ? color 'blue' : color '#000020'
LED_PAD_5 > deck master effect_active 1 ? blink ? : color 'cyan' : color '#003030' < (This button flashes when PAD5-8 is pressed)
LED_PAD_6 > deck master effect_active 2 ? blink ? : color 'cyan' : color '#003030'
LED_PAD_7 > deck master effect_active 3 ? blink ? : color 'cyan' : color '#003030'
LED_PAD_8 > deck master effect_active 4 ? blink ? : color 'cyan' : color '#003030'

LED_PAD_PRESS_1 color 'white'
LED_PAD_PRESS_2 color 'white'
LED_PAD_PRESS_3 color 'white'
LED_PAD_PRESS_4 color 'white'
LED_PAD_PRESS_5 color 'white'
LED_PAD_PRESS_6 color 'white'
LED_PAD_PRESS_7 color 'white'
LED_PAD_PRESS_8 color 'white'
 

发表时间 11 hours ago
hi djcel, why can't I see your message?

[djcel] ...because it's an internal comment.
 

deck master effect_active 1/2/3 etc means the FX selected on Master in Slot 1/2/3.
In your case, you select and activate the videoRotation on Master on the default FX slot 1, not the others.
So in your LEDs, you will have to query the same action, and if you want to only query their buttons you need to add those and not some other FX slots

As an example...
LED 5 : deck master effect_active ? effect_button 1 ? blink ? : color 'cyan' : color '#003030' : color '#003030'
LED 6: deck master effect_active ? effect_button 2 ? blink ? : color 'cyan' : color '#003030' : color '#003030'
LED 7: deck master effect_active ? effect_button 3 ? blink ? : color 'cyan' : color '#003030' : color '#003030'
 

@DJDAD, thanks that is the solution !