Beginner setup

spacestationmax

2010-12-21 21:19:39

Hi I am interested in using the midi translator to use my M-Audio 49 to emulate "101 key typing keyboard" actions and ultimately control this drum machine
http://www.wizardmaster.com/bludgeonsoft

to start I just want the first key on my midi keyboard the C1 to emulate the "1" key on my typing keyboard. I want it to sustain the "1" key being held down for the same amount of time as i hold down the "C1" key. I don't care how hard the midi is pressed i want it to do the same thing soft and hard.

I was unable to set this up. I would like to set this up for maybe 16 keys at a time.

Thankyou for your help. :D:D

Attigo

2010-12-23 20:00:09

In that case then, you just 'swallow' the incoming velocity. Then you should have 2 translators, one with the note on (swallowing the velocity) and the other with the note off. If want to sustain for as long as you hold down the key, then in the outputs you will need a key down event (first) and a key up event (last). So your key you want to use for 'I' is C1...

Code: Select all

[x] Translator 0: Note ON
Incoming: MIDI 90 18 oo
Outgoing: Key down: I

[x] Translator 1: Note OFF
Incoming: MIDI 80 18 00
Outgoing: Key up: I

I hope this makes sense, and it should work!

Scott

_