-
Hi there, I'd like to connect a mt32-pi to a "modern" laptop (and by modern I mean, no MIDI ports, just USB ports).
Is my understanding correct? If so, are there any "end-to-end" USB-midi cables out there? Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 5 comments 3 replies
-
A couple of things come to mind. The MT-32 Pi supports USB to Midi devices. e.g. it works perfectly with my Roland UM-ONE ver2. I can plug a UM-ONE into the MT-32 PI and cross connect another UM-ONE that is plugged into a USB port on my computer. Both the MT-32 Pi and the computer both believe they are talking to other Midi devices. There are also USB "Host" controllers that could do this too... check for YouTube videos on connecting a USB Instrument Controller to a USB modular Synth. |
Beta Was this translation helpful? Give feedback.
-
Thanks! Ok, so it is as I described. I think MIDI-over-network is probably the cleanest setup. Thanks again. |
Beta Was this translation helpful? Give feedback.
-
Re: End to End. You could always hard wire two USB - Midi interfaces together to create a single USB to USB midi cable.... effectively giving you what you want in what appears to be a single cable.... and it would have two micro-controllers. ;) Of course you can just get two interfaces, plug the midi cables together and have on USB end on your laptop and the other in the MT-32 Pi and call it a day. This works well. Re: Midi over network MT-32 PI doesn't have WiFi code in it nor do I think it would be a good idea to include it. On the PI WiFi is handled by the USB controller so it grabs part of the USB available bandwidth and resources. Likewise there is too much latency on WiFi for Midi over ethernet. |
Beta Was this translation helpful? Give feedback.
-
Awesome, thank you all! |
Beta Was this translation helpful? Give feedback.
-
It's pretty easy to use a small microcontroller to connect to the UART RX pin on the Pi, and 'speak' USB HID MIDI to interface to a pc.... I used this code: https://github.com/TheKikGen/USBMidiKliK4x4 on an STM32 'bluepill' board. There are other projects out there for pretty much any common USB-enabled microcontroller, like the atmega32u4 on the Arduino Micro and Leonardo; just look at the 'example' code in the various MIDI libraries out there. Most have examples for MIDI-to-USB converters It would be better still if Broadcom documented their USB controller better so that the mt32pi could operate in USB 'device' mode directly. |
Beta Was this translation helpful? Give feedback.
A couple of things come to mind.
The MT-32 Pi supports USB to Midi devices. e.g. it works perfectly with my Roland UM-ONE ver2.
I can plug a UM-ONE into the MT-32 PI and cross connect another UM-ONE that is plugged into a USB port on my computer.
Both the MT-32 Pi and the computer both believe they are talking to other Midi devices.
There are also USB "Host" controllers that could do this too... check for YouTube videos on connecting a USB Instrument Controller to a USB modular Synth.