Currently i'm building an app which is basically a synthesizer controller for my Virus TI synthesizer. The Virus allows most of it's parameters to be set using MIDI CC messages. Using Audiokit this very simple:
midiOutput.sendEvent(AKMIDIEvent(controllerChange: 17, value: SomeValue, channel: 1))
However, some parameters need to be set using "Poly Pressure" messages. Each note is mapped to some parameter, and the pressure value will be used to set te parameter. This looks like a hack, but it is the way it is.
My problem is now that i cannot find a way to send midi poly pressure messages since they do not seem to be available in audiokit. (in other words: there is no poly pressure event type)
Question: is there any way to send poly pressure messages using audiokit? For example, is it possible to construct a new message type yourself?