MIDIMessage
public enum MIDIMessage : Equatable
Undocumented
-
Undocumented
Declaration
Swift
case channelMessage(MIDIChannelMessage)
-
Undocumented
Declaration
Swift
case systemExclusivMessage([UInt8])
-
Undocumented
Declaration
Swift
case systemCommonMessage(MIDISystemCommonMessage)
-
Undocumented
Declaration
Swift
case systemRealtimeMessage(MIDISystemRealtimeMessage)
-
Undocumented
Declaration
Swift
public static func noteOffEvent(channel: UInt8, key: UInt8, velocity: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func noteOnEvent(channel: UInt8, key: UInt8, velocity: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func polyphonicKeyPressure(channel: UInt8, key: UInt8, pressure: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func controlChange(channel: UInt8, controller: UInt8, value: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func programChange(channel: UInt8, programmNumber: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func channelPressure(channel: UInt8, pressure: UInt8) -> MIDIMessage
-
Undocumented
Declaration
Swift
public static func pitchBendChange(channel: UInt8, value: UInt16) -> MIDIMessage
-
size of message in bytes
Declaration
Swift
public var size: Int { get }
-
Undocumented
Declaration
Swift
public func write(to buffer: UnsafeMutableBufferPointer<UInt8>)