Hi! I am trying to make my device show 2 different USB-MIDI ports to the computer. Is this possible? I am trying like this: ``` USBMIDI_CREATE_DEFAULT_INSTANCE() USBMIDI_CREATE_INSTANCE(4, MIDIOUT) ``` and then ``` MIDI.begin(MIDI_CHANNEL_OMNI); MIDI.turnThruOff(); MIDIOUT.begin(MIDI_CHANNEL_OMNI); MIDIOUT.turnThruOff(); ``` But I only see the first MIDI port. In the examples I see that there is one for a Hardware MIDI and USB midi ports, but I don't see an example with 2 USB ports. Thanks!