[][src]Constant midi_consts::channel_event::CONTROL_CHANGE

pub const CONTROL_CHANGE: u8 = 0xB0;

Event type of a controller event.

A channel event of this type is as follows:

  • byte one: CONTROL_CHANGE | channel, where channel is the channel (0-16)
  • byte two: controller type (0-127)
  • byte three: new controller value

See the control_change module for more details.