-
Notifications
You must be signed in to change notification settings - Fork 0
Serato Sysex
According to the list of MIDI manufacturer
IDs,
Serato has a MIDI manufacturer ID of [0x00, 0x20, 0x7F]
.
Controller manufacturers and Serato use this manufacturer ID to exchange sysex messages from the computer to the controller to trigger some functions of the controller.
Currently, the only identified System Exclusive MIDI message using this ID is described below
It appears that serato sends the F0 00 20 7F 03 01 F7
sysex message to
the serato certified controllers to ask them to send back the status of
each item on the control surface (the value of all knobs and sliders)
which means:
- F0 ⇒ Begin SysEx Message
- 00 20 7F ⇒ it's the Serato Manufacturer according to https://www.midi.org/specifications/item/manufacturer-id-numbers
- 03 01 ⇒ The Serato's proprietary message
- F7 ⇒ End of SysEx Message
So if you are mapping a serato-certified controller, you can try to send this sysex message by adding this declaration at the top of your javascript file:
// The SysEx message to send to the controller to force the midi controller
// to send the status of every item on the control surface.
var ControllerStatusSysex = [0xF0, 0x00, 0x20, 0x7F, 0x03, 0x01, 0xF7];
and send it at the end of your init()
function, after connections has
been made:
// After midi controller receive this Outbound Message request SysEx Message,
// midi controller will send the status of every item on the
// control surface. (Mixxx will be initialized with current values)
midi.sendSysexMsg(ControllerStatusSysex, ControllerStatusSysex.length);
Mixxx is a free and open-source DJ software.
Manual
Hardware Compatibility
Reporting Bugs
Getting Involved
Contribution Guidelines
Coding Guidelines
Using Git
Developer Guide
Contributing Mappings
Mixxx Controls
MIDI Scripting
Components JS