Module el.midi
MIDI utilities.
Info:
- Author: Michael Fisher
Messages
controller (channel, controller, value) | Make a controller message |
noteon (channel, note, velocity) | Make a note on message |
noteoff (channel, note) | Make a regular note off message |
noteoff (channel, note, velocity) | Make a note off message with velocity |
Messages
- controller (channel, controller, value)
-
Make a controller message
Parameters:
- channel integer MIDI Channel
- controller integer Controller number
- value integer Controller Value
Returns:
-
MIDI message packed as Integer
- noteon (channel, note, velocity)
-
Make a note on message
Parameters:
- channel integer MIDI Channel
- note integer Note number 0-127
- velocity integer Note velocity 0-127
Returns:
-
MIDI message packed as Integer
- noteoff (channel, note)
-
Make a regular note off message
Parameters:
- channel integer MIDI Channel
- note integer Note number
Returns:
-
MIDI message packed as Integer
- noteoff (channel, note, velocity)
-
Make a note off message with velocity
Parameters:
- channel integer MIDI Channel
- note integer Note number
- velocity integer Note velocity
Returns:
-
MIDI message packed as Integer