Where is port 2 on usb host

I’m getting crazy with that fckn thing i totally have everything enough.

How to define port 2 on lua code for usb host. I set midi.sendsysex to 2, 0 is Din out, 1 Din in, i was tryin with 3 or 4, but it’s out of range. I dont want, to set it in general routing, i need to set it in lua code.

Simple as fuck and can’t make it.

Maybe misreading this - but I’ve always used the Hardware ports defined Globals

PORT_1

PORT_2

midi.sendSysex(PORT_2)

1 Like

to send a message to Port 2 on all interfaces:

  midi.sendControlChange(PORT_2, 3, 13, 99)

to send a message to USB Host only:

  midi.sendControlChange(USB_HOST, PORT_2, 3, 13, 99)

providing you have connected your USB MIDI device to Electra One host port 2…

More on that in the MIDI functions documentation.

please avoid the f-words next time.Thanks.

1 Like