package llama_core

  1. Overview
  2. Docs

Module Llama_midi.Channel_voice_messageSource

Sourcetype note_event = {
  1. note : int;
  2. velocity : int;
}
Sourcetype message =
  1. | Note_off of note_event
  2. | Note_on of note_event
Sourcetype t = {
  1. channel : int;
  2. message : message;
}