Difference between revisions of "Luamidi:getMessage"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.12<br/> '''Class:''' Lua Midi<br/> === Description === xxx. <source lang="lua"> luamidi:getMessage() </source> {{LuaMidi}}") |
|||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
− | + | Gets the next incoming message from the queue from to chosen IN port. | |
<source lang="lua"> | <source lang="lua"> | ||
− | luamidi | + | s, n, v, d = luamidi.getMessage(i) |
</source> | </source> | ||
+ | Gets message from IN port i in the following format: status, note, velocity, delta time. For explanation see [https://www.recordingblogs.com/wiki/midi-event midi messages]. | ||
{{LuaMidi}} | {{LuaMidi}} |
Revision as of 12:18, 27 June 2022
Available since: Gideros 2018.12
Class: Lua Midi
Description
Gets the next incoming message from the queue from to chosen IN port.
s, n, v, d = luamidi.getMessage(i)
Gets message from IN port i in the following format: status, note, velocity, delta time. For explanation see midi messages.