MIKMIDICommandType
Objective-C
enum MIKMIDICommandType {}
Swift
enum MIKMIDICommandType : UInt
Types of MIDI messages. These values correspond directly to the MIDI command type values found in MIDI message data.
Note
Not all of these MIDI message types are currently explicitly supported by MIKMIDI.-
Note off command.
Declaration
Objective-C
MIKMIDICommandTypeNoteOff = 0x8fSwift
case noteOff = 143 -
Note on command.
Declaration
Objective-C
MIKMIDICommandTypeNoteOn = 0x9fSwift
case noteOn = 159 -
Polyphonic key pressure command.
Declaration
Objective-C
MIKMIDICommandTypePolyphonicKeyPressure = 0xafSwift
case polyphonicKeyPressure = 175 -
Control change command. This is the most common command sent by MIDI controllers.
Declaration
Objective-C
MIKMIDICommandTypeControlChange = 0xbfSwift
case controlChange = 191 -
Program change command.
Declaration
Objective-C
MIKMIDICommandTypeProgramChange = 0xcfSwift
case programChange = 207 -
Channel pressure command.
Declaration
Objective-C
MIKMIDICommandTypeChannelPressure = 0xdfSwift
case channelPressure = 223 -
Pitch wheel change command.
Declaration
Objective-C
MIKMIDICommandTypePitchWheelChange = 0xefSwift
case pitchWheelChange = 239 -
System message command.
Declaration
Objective-C
MIKMIDICommandTypeSystemMessage = 0xffSwift
case systemMessage = 255 -
System message command.
Declaration
Objective-C
MIKMIDICommandTypeSystemExclusive = 0xf0Swift
case systemExclusive = 240 -
System exclusive (SysEx) command.
Declaration
Objective-C
MIKMIDICommandTypeSystemTimecodeQuarterFrame = 0xf1Swift
case systemTimecodeQuarterFrame = 241 -
System song position pointer command.
Declaration
Objective-C
MIKMIDICommandTypeSystemSongPositionPointer = 0xf2Swift
case systemSongPositionPointer = 242 -
System song select command.
Declaration
Objective-C
MIKMIDICommandTypeSystemSongSelect = 0xf3Swift
case systemSongSelect = 243 -
System tune request command.
Declaration
Objective-C
MIKMIDICommandTypeSystemTuneRequest = 0xf6Swift
case systemTuneRequest = 246 -
System timing clock command.
Declaration
Objective-C
MIKMIDICommandTypeSystemTimingClock = 0xf8Swift
case systemTimingClock = 248 -
System timing clock command.
Declaration
Objective-C
MIKMIDICommandTypeSystemStartSequence = 0xfaSwift
case systemStartSequence = 250 -
System start sequence command.
Declaration
Objective-C
MIKMIDICommandTypeSystemContinueSequence = 0xfbSwift
case systemContinueSequence = 251 -
System continue sequence command.
Declaration
Objective-C
MIKMIDICommandTypeSystemStopSequence = 0xfcSwift
case systemStopSequence = 252 -
System keep alive message.
Declaration
Objective-C
MIKMIDICommandTypeSystemKeepAlive = 0xfeSwift
case systemKeepAlive = 254
View on GitHub
MIKMIDICommandType Enumeration Reference