Hi Anton
> ive tried numerous ways with .tx but cant seem to get it right, is there an easy way to convert .easypar to .tx?
.easypar CC 1 15 127 64 toggleoff
CC the is $B0 midi status byte
1 Midi channel 1 = 0 2 = 1 etc - $B0 = CC 1 and $B1 = CC 2 .. $BF = CC 16
15 CC type eg 7 = volume
127 is the min value
64 is the max value - have you reversed them ??
toggleoff is the button mode
$button 35
.minmax 64 127
.mode toggleoff
.tx $B0 15 val
Check out the Wiki documents mentioned on the this groups homepage.
Or for an in depth view check out Mark's BC language document on his web site
> i take it .mode updown is the same as momemntary?
yes
> also. if the min max values are different for each thing i want to send how would that work?
You can't do that. Each control can only have one value
There are some ways around it.
$button 35
.minmax $007F $3F80
.default $007F
.mode updown
.tx $B0 15 val0.6
.tx $B0 25 val7.13
Output
On
$B0 15 0
$B0 25 127
Off
$B0 15 127
$B0 25 0
Royce
RoyceMessage
Re: how to send multiple cc's (momentary) on one button
2010-05-17 by Royce
Attachments
- No local attachments were found for this message.