Hello. I have Push Action for ECHO 1/4 and do not know how to map the light to change when is on, it is constant cyan color. I tried some codes but it changes light when is ON to all 4 PADs (ECHO 1/4, ECHO 1/2, ECHO 3/4, ECHO 1)
This is the Push Action code:
effect_active 6 'echo' on ? effect_slider 6 1 80% & effect_slider 6 2 40% ? effect_active 'echo' off : effect_slider 6 1 80% & effect_slider 6 2 40% : effect_slider 6 1 80% & effect_slider 6 2 40% & effect_active 6 'echo' on
Any Help?
This is the Push Action code:
effect_active 6 'echo' on ? effect_slider 6 1 80% & effect_slider 6 2 40% ? effect_active 'echo' off : effect_slider 6 1 80% & effect_slider 6 2 40% : effect_slider 6 1 80% & effect_slider 6 2 40% & effect_active 6 'echo' on
Any Help?
Posted 2 days ago @ 5:26 pm
example for 1/4, take note instead of querying and moving slider 2, I'm using the effect_beats verb, because it's better and easier.
first bit in brackets is the LED logic
&& basically strings two queries together, if both are true then on logic is called for the pad LED.
first bit in brackets is the LED logic
&& basically strings two queries together, if both are true then on logic is called for the pad LED.
( effect_beats echo 0.25 && effect_active echo ? on : off ) & effect_active 6 'echo' on ? effect_slider 6 1 80% & effect_beats 6 0.25 ? effect_active 'echo' off : effect_slider 6 1 80% & effect_beats 6 0.25 : effect_slider 6 1 80% & effect_beats 6 0.25 & effect_active 6 'echo' on
Posted 2 days ago @ 5:38 pm