This connection type sends MIDI messages to a MIDI output device.
It provides write-only parameters for MIDI short messages as well as a separate parameter for sending SysEx data.
Configuration
- Device: Select the MIDI output device to send messages to.
BTConnect opens the selected device when the connection starts.
Parameters
The MIDI Output connection provides a fixed set of write-only integer parameters in the form:
<status>/<data1>(integer, write-only) - sends a MIDI short message using the specified status byte and first data byte. The parameter value is sent as the second data byte (data2).
The valid ranges are:
status:0to255data1:0to127- parameter value (
data2):0to127
For example:
- Setting
144/60to100sends a MIDI Note On message on channel 1 for note 60 with velocity 100. - Setting
176/7to90sends a MIDI Control Change 7 message on channel 1 with value 90.
In addition, the following parameter is available:
sysex(string, write-only) - sends a System Exclusive message. The value must be a hexadecimal byte string. Spaces are allowed and will be ignored before sending.
For example:
F0 7E 7F 09 01 F7
Only outgoing MIDI messages are handled by this connection.