Topic: Organteq SYSEX
SYSEX stands for System Exclusive and Organteq will respond to this from an external source...
For my experiments I used Bome MIDI Translator Pro
What have I discovered?
Take this simple HEXIDECIMAL string:
F0 0B 7D 73 39 01 01 02 00 7F F7
F0 denotes the start of a SYSEX string and is important
F7 demotes the end and is equally important
0B 7D 73 39 01 Specifically tells Organteq to respond to what follows...
01 02 00 7F is what follows and this is where I will focus my attention / comments...
===============================================================================================
First things first
The keyboards / Pedal board are numbered thus: Pedal 0, Positif 1, Grand Organe 2, Recit 3
The keyboard section is addressed as follows:
... 01
next comes the actual keyboard (Grand Organ 2)
... 01 02
next comes the stop (0-9 for first-last 10 in total)
... 01 02 00
next comes what to do with it either turn it ON (127) or OFF (0)
... 01 02 00 7F
===============================================================================================
Let's put that together:
F0 0B 7D 73 39 01 01 02 00 7F F7
This tells Organteq to draw the first stop for the Grand Organe keyboard
===============================================================================================
From this you should be able to draw / push any voiced stop you require...
what does: F0 0B 7D 73 39 01 01 00 01 7F F7 do ???