AKAI APC40 Non-Momentary Toggle, pls help

Moosh

2009-10-18 05:54:03

Hi all,

Can someone please walk me through making a non-momentary button that I press once to turn on an EQ (and it lights up) and press again to turn off the EQ (and the light goes off)?

Thank you.

M

Moosh

2009-10-18 22:13:34

OK

I figured this out using the forum (bentosan's post) and some help from s4racen.

Objective: make a momentary toggle
Using: Record Arm buttons, to switch a track between Send A and B (using this to route music to two channels that are my DJ decks)

Translator 1
Incoming
80 30 7F

Rules
if ga==0 goto "toggleon"
if ga==1 goto "toggleoff"
label "toggleon"
ga=1
pp=127
exit rules, execute outgoing action
label "toggleoff"
ga=0
pp=0

Outgoing
80 30 pp

ROUTE TO SPECIFIC OUT PORT: APC40**** this is the trick!


translator 2

incoming 80 30 7F
rules
if ga==0 then pp=0
if ga==1 then pp=127

outgoing
90 30 pp

OK

I figured this out using the forum (bentosan's post) and some help from s4racen.

Objective: make a momentary toggle
Using: Record Arm buttons, to switch a track between Send A and B (using this to route music to two channels that are my DJ decks)

Translator 1
Incoming
80 30 7F

Rules
if ga==0 goto "toggleon"
if ga==1 goto "toggleoff"
label "toggleon"
ga=1
pp=127
exit rules, execute outgoing action
label "toggleoff"
ga=0
pp=0

Outgoing
80 30 pp

ROUTE TO SPECIFIC OUT PORT: APC40**** this is the trick!


Hope this helps!

Thanks all...

8)