MIDI & HEX Converter

for A&H dLive & Avantis

Generate hexadecimal commands from MIDI commands.
// MIDI Command
Value between 1 and 16
Value between 0 and 127
// HEX Result NOTE ON
90 3C 7F
Scene Recall
Allen & Heath implements Scene Recall using two MIDI messages, due to the large number of available scenes. First, the bank is selected via a Control Change message (Bank 0 = Scenes 1–128, Bank 1 = Scenes 129–256, etc.), followed by the specific scene within that bank via a Program Change.
// Target Scene
Value between 1 and 12
Value between 1 and 500
// Commands
First Message · Bank Select
B0 00 00
or as MIDI commands:
MIDI Control Change (CC #0)
0-based Software
(e.g. Reaper, LiveProfessor)
1-based Software
(e.g. QLab, Ableton)
Second Message · Scene Select
C0 00
or as MIDI commands:
MIDI Program Change
0-based Software
(e.g. Reaper, LiveProfessor)
1-based Software
(e.g. QLab, Ableton)