1

Is it possible to configure RPi as a MIDI device? I'd like it to show up as a MIDI device on my computer when connected via USB OTG to my computer.

vaid
  • 381
  • 4
  • 13

1 Answers1

3

OTG does not work on most Pi models due to hardware restrictions.

To enable OTG on the Pi Zero, see Andrew Mulholland's blog post Raspberry Pi Zero – Programming over USB!, and the linked guide. (To summarize: add dtoverlay=dwc2 to /boot/config.txt, and load the dwc2 and g_midi modules.)

CL.
  • 571
  • 5
  • 9