The QuNexus keyboard has a mode with 10-note polyphony where it sends noteOns and ccs on 10 different channels is a rotating scheme.
- make a sound example for that
- use xy control values for parameters
- use midiRawAction to record into a KtlLoop, e.g.
MKtl(\qnxs).midiRawAction = { |...args|
var event = (... based on args);
KtlLoop(\qnx).rec(event);
};
KtlLoop(\qnx).play;