Connecting audio/midi interface

Status
Not open for further replies.

dim3740

New member
Hello! I know that Teensyduino implements a "class compliant" MIDI device, which can work with the built-in drivers on all major operating systems.

Can I connect TeensyLE to an audio/midi interface Focusrite iTrack Dock through MIDI USB port?

Thanks.

111.jpg
 
Hi dim3740, I don't have and iTrack but looking at their website it is expecting a class compliant device so should be fine with teensy acting as a midi device.

It doesn't support usb hubs so you will need to connect it directly to the teensy (with a normal usb cable)


cheers Paul
 
It really depends on how class compliant that Focusrite product is. We've heard reports that Teensy does work with many products, but not all. Some apparently aren't quite as class compliant as they claim to be.

Teensy also implements a HID interface alongside the class compliant MIDI interface. Or it can implement a composite device of MIDI together with Serial and Audio. Some products expecting a class compliant MIDI USB device seem to be unable to ignore the extra non-MIDI interfaces. If you run into this, first try the various options in Tools > USB Type, since that is just an easy matter of clicking options in Arduino and uploading your program again.

If Focusrite iTrack Dock turns out to want a USB device having only a single MIDI interface and no other USB interfaces, you can achieve that with Teensy, but it does require editing usb_desc.h to get rid of the extra HID or Serial interface. Normally you would want those while developing your code, so Serial.print() can send to the Arduino Serial Monitor even while you're communicating MIDI messages with your PC.
 
Thanks for the quick answers! I think I will solve these problems successfully. I understand your idea.
 
Status
Not open for further replies.
Back
Top