PDA

View Full Version : MIDI CC



mr_es335
08-01-2017, 04:22 PM
Hello,

How do you send MIDI CC - Control Change data from SAW?

Would appreciate any assistance.

Bob L
08-01-2017, 05:27 PM
Read the helpfile Control Track section.

Bob L

RobertV
08-01-2017, 05:28 PM
Hi;

Explore the control track, it has options to sent midi commands.
Sounds like hard work though!

Cheers..

mr_es335
08-01-2017, 05:49 PM
Robert,

I use the Control Track quite a bit...it is just that I do not know - or am not sure which command is used to send CC data.

I use S-Gear 2 amp sim as a plug-in and it makes note of the following:

2647

I am just trying to understand how to go about doing this in SAW - hopefully via the Control Track.

mr_es335
08-01-2017, 08:28 PM
Bob.

Read the helpfile Control Track section. Bob L...I have done this...many, many times...

I can pass Bank and Program changes, but no controller changes??

Have a peep: Snapshots (https://www.scuffhamamps.com/forum/6-general-discussion/7970-snapshots#15034)

Bob L
08-02-2017, 06:11 AM
A CC message can be sent using the midi hex string Control Track command.

For instance... a hex string of " B0 07 64" would send a Control Change message to set the midi volume to 64 on midi chan 1.

You would need to know what midi controller message value (the second value in the string) controls what on your device.

The first value B0 designates a CC message on a certain midi chan... B1 is chan 2... B3 is chan 4... the chans start at 0 - 15 (0F).
The second value in the string is the CC number.
The third value in the string is the actual CC Value.

You can send any complex midi command this way... just check any midi programming reference for all the various midi messages.

Bob L

mr_es335
08-02-2017, 08:58 AM
Bob,

Great!

Thanks for this...much appreciated.