[][src]Constant midi_consts::channel_event::NOTE_OFF

pub const NOTE_OFF: u8 = 0x80;

Event type of note off event.

A channel event of this type is as follows:

  • byte 1: NOTE_OFF | channel
  • byte 2: note number (0-127)
  • byte 3: velocity (how hard the key was released)

Remark

A note off event is often represented as a note on event with velocity 0.