Monitoring MIDI Input?

Discuss Lemur and share techniques.
Post Reply
AnSolas
Newbie
Posts: 9
Joined: 21 Jan 2015 17:35

Monitoring MIDI Input?

Post by AnSolas »

Hello,
How do I Monitor incoming MIDI data, please ?

I tried it like this:
Image

Do I understand this correct, as far as a NoteOn is received by MIDI Port 5 the Monitor value should change to 1?
But it is not working, what am I missing please?

- Marc
AnSolas
Newbie
Posts: 9
Joined: 21 Jan 2015 17:35

Re: Monitoring MIDI Input?

Post by AnSolas »

Ok I sorted it out myself !

Next thing is how to actually Monitor incoming MIDI Data?

I've read in the manual that the MIDI_ARGS Array contains the incoming MIDI Data, but how to actually use this?

Monitor.value = MIDI_ARGS[0]; does not work.
Softcore
Regular
Posts: 1613
Joined: 04 Nov 2012 08:34

Re: Monitoring MIDI Input?

Post by Softcore »

Weird, It should work.....Try adding a custom expression "MidiData".

Then input in the monitor value field: MidiData

Then in your onMidi script go:

MidiData = MIDI_ARGS;
Post Reply