Hi,
I’m using a MIDI shield (sparkfun GitHub - sparkfun/MIDI_Shield: Midi shield product 9595, available from SparkFun Electronics ) with arduino DUE to host a monome and make it send MIDI without a computer (full project GitHub - kaosbeat/monardaxo: monome - arduino - axoloti > standalone setup )
This works as long as I upload the patch from the computer. When I start just using a power supply, the receiving side works (midi receive) but sending midi fails. The TX led does not blink, no midi is sent.
For some reason I need to enable the USB port serial interface? I don’t know how to do this, or to trick the arduino in to thinking it should send data. It should work on pin 0/1
I’m enabling this port using:
’’’
MIDI_CREATE_INSTANCE(HardwareSerial, Serial, MIDI);
’’’
And like I said, this works, whenever connected to a PC (programming port on the DUE side) but not when connected using a usb power supply on the same port.