Attempt to receive midi messages from a midi device.
dev - a octave midi device opened using mididevice.
maxmsg - Maximum number of messages to retrieve. If not specified, the function will attempt to get all pending.
midimsg - a midimsg containing the messages retrieved from the device.
If no messages are available, midimsg will be empty.
Open device 0, and poll and display read messages
dev = mididevice(0);
while true
mx = midireceive(dev);
if !isempty(mx)
% display message
mx
endif
endwhile
See also: mididevice, midisend.
Package: audio