Difference between revisions of "Luamidi:noteOn"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.12<br/> '''Class:''' Lua Midi<br/> === Description === xxx. <source lang="lua"> luamidi:noteOn() </source> {{LuaMidi}}") |
|||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
− | + | ||
+ | Sends a Note On message to chosen OUT port. | ||
+ | |||
+ | <source lang="lua"> | ||
+ | luamidi.noteOn(i, n, v, ch) | ||
+ | </source> | ||
+ | |||
+ | Sends a note on message to OUT port i with note n. You can also set the velocity (v) and channel (ch), these are optional. | ||
<source lang="lua"> | <source lang="lua"> | ||
luamidi:noteOn() | luamidi:noteOn() |
Revision as of 12:23, 27 June 2022
Available since: Gideros 2018.12
Class: Lua Midi
Description
Sends a Note On message to chosen OUT port.
luamidi.noteOn(i, n, v, ch)
Sends a note on message to OUT port i with note n. You can also set the velocity (v) and channel (ch), these are optional.
luamidi:noteOn()