loopMIDI

    add : OSCtoDAW
    add : DAWtoOSC
--------------------------------------

Open Stage Control

    load :          osc-load
    custom-module : osc-custom-module
    midi :          OSCtoDAW:-1,X DAWtoOSC:Y,-1
(X = 'List Midi Devices' in OSC -> Use the OSCtoDAW Output)
(Y = 'List Midi Devices' in OSC -> Use the DAWtoOSC Input )
--------------------------------------

Cubase

Open Studio Setup and create a generic remote (if there is none, or you use one already)
    Generic Remote
        Midi Input : Not Connected
        Midi Output : DAWtoOSC
            Top:
                cc117 | Controller | 1 | 117 | 127 | ,T,,
                cc118 | Controller | 1 | 118 | 127 | ,T,,
                cc119 | Controller | 1 | 119 | 127 | ,T,,
            Bottom:
                cc118 | Midi Mixer | Selected | 4000                   | ,,
                cc118 | Mixer      | Selected | Ins. 1 Tremolo Spatial | ,,
                cc119 | Mixer      | Selected | Ins. 1 Tremolo Depth   | ,,

For Instrument Tracks:
    Create an instrument instance (e.g. Kontakt)
        Assign the Steinberg Tremolo to Audio Insert Slot 1 (any FX with 2x 127 value will do)
            Set everything to 0, deactivate the effect (don't bypass, this way you save CPU)
(if using the Tremolo from Steinberg the Spatial knob adds +128 to the Depth knob value
Depth knob = 0 to 127 = the number you set for your expressionmap in the custom-module JavaScript
e.g. in this case it's the 7:
7:{
    'trackname': 'IDK',
    'trackarticulations':[
        '', '', '', '', '', '',
...)

For MidiTracks:
    Add 2 Transformers as Midi Sends
        Set Midi Device from Not Connected to DAWtoOSC
        Set Channel to 1 (default)

        Transformer 1 settings:
            Top:
                Type is             | Equal | Controller AND
                MIDI Controller No. | Equal | 116
            Bottom:
                Type | Set to fixed value | Controller
                Value 1 | Set to fixed value | 118
                Value 2 | Set to fixed value | X
(X = X * 128 added to Y)

        Transformer 2 settings:
            Top:
                Type is             | Equal | Controller AND
                MIDI Controller No. | Equal | 116
            Bottom:
                Type | Set to fixed value | Controller
                Value 1 | Set to fixed value | 119
                Value 2 | Set to fixed value | Y
(Y = 0 to 127 = the number you set for your expressionmap in the custom-module JavaScript
 e.g. in this case it's the 7:
7:{
    'trackname': 'IDK',
    'trackarticulations':[
        '', '', '', '', '', '',
...)

--------------------------------------

Additional Info

- You can just generate a Cubase expressionmap and a JavaScript array for the OSC
  custom-module with my xpressmapp on 'nils-lischka.com/xpressmapp'
