noisy.music.boxes wrote:thanks in advance 
No probs....
The Teensy boards are probably the best option. Here's a circuit diagram, and more info here:
https://www.pjrc.com/teensy/td_libs_MIDI.htmlYou only really need the Midi input circuit for this, so you don't have to add Midi out part.
If you do want to have Midi outs I probably wouldn't copy that Midi out circuit from the Teensy page. The output pins on the Teensy 4.0 can be a little weak (electrically), so it's probably safest to use a buffer like (74HC14N) to be safe.
There's a good circuit example here for that:
https://electricdruid.net/product/midi-inoutthru-pcb/The Teensy boards use the Arduino IDE, so the setup is pretty simple. There's install instructions here:
https://www.pjrc.com/teensy/td_download.htmlOnce set up, just select your Teensy board type, set the USB type to MIDIx16 in a drop down menu (which makes the Teensy appear as a 16 port Midi device), and then just add your code. I just modified one of the pre existing examples to get this working.
Here's a link to the basic version I came up with.
https://drive.google.com/file/d/1rfSn8N ... p=drivesdkJust double click the .ino file and it should open up in the Arduino editor if you installed it, or just open the .ino file in a text editor to just see the code.
I've tried this with the Teensy3.2 & Teensy4.0 boards and they seem to work OK. Once you get this working you can make tweaks if you want. I've added an additional Midi input so I can now get Midi from two seperate sequencers. You can also change the number of ports, so if your not gonna use all 16, you can drop it down to whatever your gonna need.
Happy to help, so feel free to ask if you need help with anything. And obviously be very careful... Plugging in homebrew stuff into your MPC comes with risks, so make sure your circuit is good before plugging into anything, and my code may have bugs I've not found (I'm still new to this myself)... Basically do this at your own risk
