Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Keystrokes to MIDI
#1
I would like to convert keystrokes from a USB QWERTY keyboard to MIDI notes to control sequencing programs.

MIDI-OX(www.midiox.com has a COM interface that could be used with QuickMacros...Right?

I alway have so many troubles getting these COM interfaces to work, so I would appreciate a little help to get me off the ground.

Thanks,
Jimmy Vig
#2
To work with MIDI can be used API functions that begin with "midi". Try midiInMessage, maybe with MIIM_DATA.

MIDI-OX will run as separate process, although controlled by QM. Like Excel. Is it OK? I did not test, but should be like usually. Install MIDI-OX. It should register its COM. Then in QM, in Type Libraries dialog find its type library, insert typelib statement, compile the macro, declare a variable of one of classes that are in the typelib, and call functions that are in the class.

typelib TypelibName ...
TypelibName.AClass v._create
v.Function...
#3
I think I may have figured this out before...but any way to use the idea http://www.quickmacros.com/forum/showthr...p?tid=3660 here to generate simple Note on and note off MIDI messages.

This way I can use FF_macro_on_key_up to essentially map a QWERTY style keyboard to custom MIDI notes.

I'll toy around too, but perhaps someone has an answer.

Thanks,
Jimmy Vig
#4
For sure, all I need is a function that will send simple midi note on/off commands over a specified MIDI device.

I'm pretty sure I pulled this off once with midiOutShortMsg

I can't find those functions now!! Darn IT!!
#5
Macro MidiOut help
Code:
Copy      Help
;Plays MIDI notes or sends other MIDI messages.

;EXAMPLE

#compile "__MidiOut"
MidiOut x.Open(-1)

x.SendB(0x90 60 127) ;;note 60 at max velocity
1
x.SendB(0x80 60) ;;stop note 60
x.SendB(0x90 50 127)
1
x.SendB(0x80 50)


Attached Files
.qml   MidiOut.qml (Size: 1.73 KB / Downloads: 455)
#6
Gintaras,

This is like christmas for me! Thank you so much for all of your help. You are awesome.

Jimmy Vig


Forum Jump:


Users browsing this thread: 1 Guest(s)