lorenzofattori
Well-known member
so I am in need to convert some midi notes from a USB MIDI device that is sending wrong notes, the end device is an iPad with midi software on it
I was thinking to use a teensy 4.1 that I have around, with my midi device connected to the USB Host and connect the Teensy USB to the IPAD.
It seems that iOS does not like the teensy 4.1
I wrote a stupid test:
this works perfectly on my PC, but when I plug the teensy to the ipad I can see the midi device but no notes are being sent.
I am using an USB C dongle with external power and I know the dongle works because if I connect my midi device it does properly show the midi notes.
Any idea why Teensy 4.1 does not send notes out to an ipad?
Thank you
I was thinking to use a teensy 4.1 that I have around, with my midi device connected to the USB Host and connect the Teensy USB to the IPAD.
It seems that iOS does not like the teensy 4.1
I wrote a stupid test:
C++:
void loop()
{
usbMIDI.sendNoteOn(42, 127, 10);
delay(1000);
}
this works perfectly on my PC, but when I plug the teensy to the ipad I can see the midi device but no notes are being sent.
I am using an USB C dongle with external power and I know the dongle works because if I connect my midi device it does properly show the midi notes.
Any idea why Teensy 4.1 does not send notes out to an ipad?
Thank you