Difference between revisions of "Luamidi:noteOff"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2018.12<br/> '''Class:''' Lua Midi<br/> === Description === xxx. <source lang="lua"> luamidi:noteOff() </source> {{LuaMidi}}")
 
Line 4: Line 4:
  
 
=== Description ===
 
=== Description ===
xxx.
+
 
 +
Sends a Note Off message to chosen OUT port.
 +
 
 
<source lang="lua">
 
<source lang="lua">
luamidi:noteOff()
+
luamidi.noteOn(i, n, ch)
 
</source>
 
</source>
 +
 +
Sends a note off message to OUT port i with note n. You can also optionally set the channel (ch).
 +
This is essentially equivalent to luamidi.sendMessage(144, i, n, 0, ch).
  
 
{{LuaMidi}}
 
{{LuaMidi}}

Revision as of 13:27, 27 June 2022

Available since: Gideros 2018.12
Class: Lua Midi

Description

Sends a Note Off message to chosen OUT port.

luamidi.noteOn(i, n, ch)

Sends a note off message to OUT port i with note n. You can also optionally set the channel (ch). This is essentially equivalent to luamidi.sendMessage(144, i, n, 0, ch).