usb_midi – MIDI over USB¶
The usb_midi module contains classes to transmit and receive MIDI messages over USB.
-
usb_midi.ports:Tuple[Union[PortIn, PortOut], ...]¶ Tuple of all MIDI ports. Each item is ether
PortInorPortOut.
-
class
usb_midi.PortIn¶ Receives midi commands over USB
You cannot create an instance of
usb_midi.PortIn.PortIn objects are constructed for every corresponding entry in the USB descriptor and added to the
usb_midi.portstuple.
-
class
usb_midi.PortOut¶ Sends midi messages to a computer over USB
You cannot create an instance of
usb_midi.PortOut.PortOut objects are constructed for every corresponding entry in the USB descriptor and added to the
usb_midi.portstuple.