1
0
Fork 0

Add missing note ports to the SysEx example

This commit is contained in:
Robbert van der Helm 2023-06-07 21:18:52 +02:00
parent bc25d6bf0a
commit b31bafdc4b

View file

@ -56,6 +56,10 @@ impl Plugin for SysEx {
const SAMPLE_ACCURATE_AUTOMATION: bool = true;
// The plugin needs to be have a note port to be able to send SysEx
const MIDI_INPUT: MidiConfig = MidiConfig::Basic;
const MIDI_OUTPUT: MidiConfig = MidiConfig::Basic;
type SysExMessage = CoolSysExMessage;
type BackgroundTask = ();