Send commands to a destination.
Commands from items send their MIDI messages to the selected Core MIDI destination.
- Destination
- The endpoint that receives MIDI from DeviceJockey
- Used by
- MIDI commands
DeviceJockey Interfaces
Send MIDI commands to a destination and receive MIDI events from a source.
Core MIDI connections
DeviceJockey separates outgoing and incoming MIDI into two interface types. Each interface selects one Core MIDI endpoint. The endpoint can come from connected hardware, software on the same device, a virtual MIDI connection, or an established Bluetooth MIDI connection.
Commands from items send their MIDI messages to the selected Core MIDI destination.
DeviceJockey listens to the selected Core MIDI source. Events whose configured MIDI action and channel match the message react.
Add separate MIDI out and MIDI in interfaces when a device or application should receive commands and return its current state.
Setup
Connect a USB or network MIDI device, or start the MIDI software you want to use. To exchange MIDI wirelessly with another iPhone, iPad, or Mac, establish a Bluetooth MIDI session.
In the Scene's Interface Settings, decide whether you want to send or receive MIDI. Add MIDI out for sending or MIDI in for receiving, then select the corresponding MIDI device.
Add MIDI Commands to Items that should send MIDI. Add MIDI Events to Items that should respond to received MIDI messages.
Bluetooth MIDI is not connected like a regular device in the system Bluetooth settings. One side advertises as a MIDI Device; the other connects through MIDI Central or the Bluetooth window in Audio MIDI Setup on a Mac.
Open the Bluetooth MIDI setup →MIDI out · Commands →
A MIDI out interface points to one available destination. Commands assigned to this interface send their messages to that destination.
Send a configured MIDI message with a fixed value.
Map an item value to a configured minimum and maximum MIDI range.
Forward note interaction from the Piano item on the selected MIDI channel.
Send Note On followed by Note Off after the configured duration.
Send a fixed Non Registered Parameter Number message.
Map an item value to a configured NRPN range.
Open the affected MIDI out interface in the Scene's Interface Settings and use Panic there. The interface sends Note Off messages to stop hanging notes.
← MIDI in · Events
A MIDI in interface listens to one available source. Events can filter incoming messages and use them to react by updating an Item or executing configured commands through Remote Options.
Standard MIDI Events support notes, Control Change, Program Change, Pitch Bend, polyphonic aftertouch, and channel pressure. NRPN and MIDI Clock Events use their own message types.
The Event reacts to the configured MIDI action and channel, then displays the received MIDI data as text in a Label or Monitor.
The Event reacts to the configured MIDI action and channel, then uses the received MIDI data as the value for the Item's action.
The Event reacts to the configured MIDI action and channel. Values within the configured minimum and maximum are mapped to the Item's range and control the Item.
Available for Sliders and Rotary controls. The Event reacts to the configured Step Up or Step Down MIDI data and moves the Item by the configured step.
The Event reacts to the configured NRPN action and channel, then uses the received data as the value for the Item's action.
The Event reacts to configured NRPN data within the minimum and maximum, then maps the received value to the Item's range.
← MIDI Clock Events
MIDI Clock Events can react to Start, Stop, Continue, bar, beat, BPM, or a custom Script. Select the time signature in the MIDI in settings so bar and beat calculations match the sending system.
Perform the Item's action when the selected transport or timing update occurs. Use a Script for custom conditions.
Display the selected transport or timing information in the Item's label. Use a Script for custom content.
Toggle the Item's state when the selected transport or timing update occurs. Use a Script for custom conditions.
The Script result determines how the Item reacts. Return true or 1 to perform an action or enable a state, return a number to set a Slider or Rotary value, or return text to update an Item label.
midiBar % 4 === 0 && midiBeat === 1 && !midiStarted && !midiContinued && !midiStopped(midiBeat - 1) / 3`Bar ${midiBar} · Beat ${midiBeat}`MIDI Clock Scripts can use midiBar, midiBeat, midiBPM,midiStarted, midiStopped, and midiContinued.See Scripts for the complete scripting reference →
Wireless transport
Bluetooth MIDI establishes a Core MIDI connection between an iPhone, iPad, or Mac. Once connected, its source and destination can be selected in the MIDI in and MIDI out interface settings like other MIDI endpoints.
Establish Bluetooth MIDI before selecting the new source or destination in the interface settings.
If an endpoint is missing
Confirm that the cable, application, virtual port, or Bluetooth MIDI connection is available.
Check the destination list for MIDI out or the source list for MIDI in.
Use Restart to ask Core MIDI to rescan its connected endpoints.
Choose the detected source or destination and confirm the interface settings.