Carthaginian
Member
The Teensy supposedly emulates a Midi USB device, but I have not been able to get it to play any notes on an Android keyboard app.
The Android keyboard app supports Midi USB, and it play notes when connected to other USB Midi controllers. My Android device will recognize a Midi USB device, but nothing will actually be played. Has anyone EVER gotten USB Midi to work on Android?
My code is as bare as it could be at this point:
The Android keyboard app supports Midi USB, and it play notes when connected to other USB Midi controllers. My Android device will recognize a Midi USB device, but nothing will actually be played. Has anyone EVER gotten USB Midi to work on Android?
My code is as bare as it could be at this point:
Code:
void setup()
{
}
void loop()
{
usbMIDI.sendNoteOn(60, 99, 2); // 60 = C4
}