Mossano
2014-03-28 07:30:16
Thank you very much in advance!!
my notes for solo buttons are 40, 41, 42, 43 on ch15. I have the same problem with "track status" and loop on/off, in/out.
Mossano
2014-03-28 07:30:16
DvlsAdvct
2014-03-28 16:38:10
Code: Select all
Translator 1: Solo Button 1
Incoming Message: 90 40 pp
Rules: if pp==127 then g0=g0+1
if g0>1 then g0=0
Outgoing Message: 90 40 pp
Translator 2: Solo Button 1 LED
Incoming Message: 90 40 7F
Rules: if g0==1 then pp=127
if g0==0 then pp=0
Outgoing Message: 90 40 pp
Mossano
2014-03-28 21:20:55
DvlsAdvct
2014-03-28 21:33:16
Mossano
2014-03-28 22:33:55
DvlsAdvct
2014-03-28 22:44:46
Code: Select all
Translator 1: Solo Buttons
Incoming Message: 9E qq pp
Rules: if qq==60 Goto "Channel 1"
if qq==61 then Goto "Channel 2"
if qq==62 then Goto "Channel 3"
if qq==63 then Goto "Channel 4"
Label "Channel 1"
if g0!=1 then g0=1
Exit rules, execute outgoing action
if g0==1 then g0=0
Exit rules, execute outgoing action
Label "Channel 2"
if g0!=2 then g0=2
Exit rules, execute outgoing action
if g0==2 then g0=0
Exit rules, execute outgoing action
Label "Channel 3"
if g0!=3 then g0=3
Exit rules, execute outgoing action
if g0==3 then g0=0
Exit rules, execute outgoing action
Label "Channel 4"
if g0!=4 then g0=4
Exit rules, execute outgoing action
if g0==4 then g0=0
Exit rules, execute outgoing action
Outgoing Message: 9E qq pp
Translator 2: Solo Button Ableton
Incoming Message: Solo Button Timer
Rules: if g0==0 then Goto "Off"
if g0==1 then Goto "Channel 1"
if g0==2 then Goto "Channel 2"
if g0==3 then Goto "Channel 3"
if g0==4 then Goto "Channel 4"
Label "Off"
pp=0
qq=0
rr=0
ss=0
Label "Channel 1"
pp=127
qq=0
rr=0
ss=0
Exit rules, execute outgoing action
Label "Channel 2"
pp=0
qq=127
rr=0
ss=0
Exit rules, execute outgoing action
Label "Channel 3"
pp=0
qq=0
rr=127
ss=0
Exit rules, execute outgoing action
Label "Channel 4"
pp=0
qq=0
rr=0
ss=127
Exit rules, execute outgoing action
Outgoing Message: 9E 40 pp 9E 41 qq 9E 42 rr 9E 43 ss
Mossano
2014-03-28 23:47:27
DvlsAdvct
2014-03-29 00:04:48
Code: Select all
Translator 2: Solo Button Timer
Incoming Message: 9E qq 7F
rules:
if qq<60 then exit rules, skip outgoing action
if qq>63 then exit rules, skip outgoing action
Outgoing Message: Timer 0ms Delay Solo Button Timer
Mossano
2014-03-29 00:31:47
DvlsAdvct
2014-03-29 00:32:39
Mossano
2014-03-29 00:34:11
Mossano
2014-03-29 00:35:33
DvlsAdvct
2014-03-29 00:58:21
Mossano
2014-03-29 01:54:30
DvlsAdvct
2014-03-29 15:40:11
Code: Select all
if qq==40 then Goto "Channel 1"
if qq==41 then Goto "Channel 2"
if qq==42 then Goto "Channel 3"
if qq==43 then Goto "Channel 4"
Code: Select all
if qq<40 then exit rules, skip outgoing action
if qq>43 then exit rules, skip outgoing action
Mossano
2014-03-29 20:07:36
Mossano
2014-03-29 21:41:28
DvlsAdvct
2014-03-29 21:43:51
Mossano
2014-03-29 23:19:07
Mossano
2014-03-29 23:21:20
DvlsAdvct
2014-03-29 23:21:28
Mossano
2014-03-29 23:55:37
DvlsAdvct
2014-03-30 00:19:56
Code: Select all
if pp==0 then exit rules, execute Outgoing Action
if qq==40 then Goto "Channel 1"
if qq==41 then Goto "Channel 2"
if qq==42 then Goto "Channel 3"
if qq==43 then Goto "Channel 4"
Label "Channel 1"
if g0==1 then skip next 2 rules
g0=1
exit rules, execute Outgoing Action
g0=0
exit rules, execute Outgoing Action
Label "Channel 2"
if g0==2 then skip next 2 rules
g0=2
exit rules, execute Outgoing Action
g0=0
exit rules, execute Outgoing Action
Label "Channel 3"
if g0==3 then skip next 2 rules
g0=3
exit rules, execute Outgoing Action
g0=0
exit rules, execute Outgoing Action
Label "Channel 4"
if g0==4 then skip next rule
g0=4
exit rules, execute Outgoing Action
g0=0
exit rules, execute Outgoing Action
Code: Select all
if pp<1 then exit rules, skip Outgoing Action
if qq<40 then exit rules, skip Outgoing Action
if qq>43 then exit rules, skip Outgoing Action
Code: Select all
if g0==0 then Goto "Off"
if g0==1 then Goto "Channel 1"
if g0==2 then Goto "Channel 2"
if g0==3 then Goto "Channel 3"
if g0==4 then Goto "Channel 4"
Label "Off"
pp=0
qq=0
rr=0
ss=0
exit rules, execute Outgoing Action
Label "Channel 1"
pp=127
qq=0
rr=0
ss=0
exit rules, execute Outgoing Action
Label "Channel 2"
pp=0
qq=127
rr=0
ss=0
exit rules, execute Outgoing Action
Label "Channel 3"
pp=0
qq=0
rr=127
ss=0
exit rules, execute Outgoing Action
Label "Channel 4"
pp=0
qq=0
rr=0
ss=127
exit rules, execute Outgoing Action
Mossano
2014-03-30 01:20:13
DvlsAdvct
2014-03-30 01:39:20
Mossano
2014-03-30 03:16:15
DvlsAdvct
2014-03-30 03:18:35
Mossano
2014-03-30 03:26:23
DvlsAdvct
2014-03-30 03:37:14
sebadem1987
2016-02-14 15:40:58
DvlsAdvct
2016-03-01 15:50:16