Page 1 of 1
Pad send chord Simple example?
Posted: 28 Jan 2015 05:09
by shougan
Hello everyone, I want to make a pad that send chord to midi 1, can't find a simple example of this, all examples that I found are rocket science for me, just one pad, 3 notes. help?
Re: Pad send chord Simple example?
Posted: 28 Jan 2015 08:44
by Softcore
Hello try this one - it should work!
Logic:
Create an expression to store the 3 note values (in the example, notes 64,66,68 are used).
Create a custom MIDI out.
Use x as a vector to trigger them - perhaps a single 'x' woudl work too, but in any case I used {x,x,x} to be sure that ALL notes are triggered.
Use {x,x,x} in the velocity field of custom midi so that when the Pad is pressed (x = 1) a note ON with velocity 127 will be sent - when x = 0, a Note "ON" with velocity 0 will be sent - WHICH is essentially a NoteOFF
Re: Pad send chord Simple example?
Posted: 29 Jan 2015 00:50
by shougan
Softcore wrote:Hello try this one - it should work!
Thank you, works great.
Re: Pad send chord Simple example?
Posted: 29 Jan 2015 07:39
by Softcore
And just in case you need it, here's ONE way to "set" the desired Notes of the chord, right from the interface.