Difference between revisions of "Luamidi:sendMessage"
From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight") |
|||
Line 5: | Line 5: | ||
=== Description === | === Description === | ||
Sends a message to chosen OUT port. | Sends a message to chosen OUT port. | ||
− | < | + | <syntaxhighlight lang="lua"> |
luamidi.sendMessage(i, s, n, v, ch) | luamidi.sendMessage(i, s, n, v, ch) | ||
</source> | </source> |
Revision as of 14:28, 13 July 2023
Available since: Gideros 2018.12
Class: Lua Midi
Description
Sends a message to chosen OUT port. <syntaxhighlight lang="lua"> luamidi.sendMessage(i, s, n, v, ch) </source> Sends a message to OUT port i in the following format: s, n, v (status, note, velocity). You can optionally set ch (the channel). Note that channel is added to the status, so the above with some value ch set is essentially equivalent to luamidi.sendMessage(i, s+ch, n, v) For explanation see midi messages.