Kontrol D2 - Effects Control for FX 3&4
Is it possible to control FX Units 3&4 with the standard mapping of a single D2 unit?
So far, I wasn't able to figure this out myself, so I was hoping for some help from the online-world :-)
Best Answers
-
Pretty sure it is possible with 4 endless encoders. You only need to navigate to the fx mode by pressing those small arrow buttons in each side of the screen. Note that the FX Unit is linked to the specific Deck.
Deck A = Unit 1
Deck C = Unit 3
Deck B = Unit 2
Deck D = Unit 4
1 -
You are correct, both D2 and S8 use the same file for parameter controls.
Looking at the D2 only code for FX assignments, using assignment buttons with shift (with 4fxunits) allows assignments unit 3 (for left decks D2) and 4 (for right decks D2):
WiresGroup { enabled: deck.shift && (fxMode.value == FxMode.FourFxUnits) WiresGroup { enabled: decksAssignment.value == DecksAssignment.AC Wire { from: "surface.fx.assign.1"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.1.fx.assign.3"; } } Wire { from: "surface.fx.assign.2"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.2.fx.assign.3"; } } Wire { from: "surface.fx.assign.3"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.3.fx.assign.3"; } } Wire { from: "surface.fx.assign.4"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.4.fx.assign.3"; } } } WiresGroup { enabled: decksAssignment.value == DecksAssignment.BD Wire { from: "surface.fx.assign.1"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.1.fx.assign.4"; } } Wire { from: "surface.fx.assign.2"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.2.fx.assign.4"; } } Wire { from: "surface.fx.assign.3"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.3.fx.assign.4"; } } Wire { from: "surface.fx.assign.4"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.4.fx.assign.4"; } } } }
The endless encoders and buttons below the screen control FX of Units 3 and 4 as long as they are not set to control remix/stem parameters:
WiresGroup { enabled: (fxMode.value == FxMode.FourFxUnits) && (footerPage.value == FooterPage.fx) && !isInEditMode // Effect Unit 3 WiresGroup { enabled: decksAssignment == DecksAssignment.AC WiresGroup { enabled: screenOverlay.value != Overlay.fx Wire { from: "%surface%.buttons.1"; to: "fx_units.3.enabled" } Wire { from: "%surface%.buttons.2"; to: "fx_units.3.button1" } Wire { from: "%surface%.buttons.3"; to: "fx_units.3.button2" } Wire { from: "%surface%.buttons.4"; to: "fx_units.3.button3" } } Wire { from: "%surface%.knobs.1"; to: "fx_units.3.dry_wet" } Wire { from: "%surface%.knobs.2"; to: "fx_units.3.knob1" } Wire { from: "%surface%.knobs.3"; to: "fx_units.3.knob2" } Wire { from: "%surface%.knobs.4"; to: "fx_units.3.knob3" } } // Effect Unit 4 WiresGroup { enabled: decksAssignment == DecksAssignment.BD WiresGroup { enabled: screenOverlay.value != Overlay.fx Wire { from: "%surface%.buttons.1"; to: "fx_units.4.enabled" } Wire { from: "%surface%.buttons.2"; to: "fx_units.4.button1" } Wire { from: "%surface%.buttons.3"; to: "fx_units.4.button2" } Wire { from: "%surface%.buttons.4"; to: "fx_units.4.button3" } } Wire { from: "%surface%.knobs.1"; to: "fx_units.4.dry_wet" } Wire { from: "%surface%.knobs.2"; to: "fx_units.4.knob1" } Wire { from: "%surface%.knobs.3"; to: "fx_units.4.knob2" } Wire { from: "%surface%.knobs.4"; to: "fx_units.4.knob3" } } }
The answer to this is yes. FX assignment with shift controls Unit 3 and 4 assignments, encoders and buttons below the screen control Unit 3 and 4 parameters (when not using remix deck, stem deck controls or when in EDIT mode).
1
Answers
-
Pretty sure it is possible with 4 endless encoders. You only need to navigate to the fx mode by pressing those small arrow buttons in each side of the screen. Note that the FX Unit is linked to the specific Deck.
Deck A = Unit 1
Deck C = Unit 3
Deck B = Unit 2
Deck D = Unit 4
1 -
Seems to only work with Unit 1 and 2. (Edit: turns out this is wrong)
0 -
That S5 manual? My S8 can control all four fx units and I think D2 is the same basic mapping.
1 -
I looked at the manual, it says S5 but is D2 manual haha.
I saw this:
Which applies to the top effect section but the encoders should have the fx mode too. Or at least a midi mode so that Units 3 and 4 can be mapped manually on those encoders.
1 -
You are correct, both D2 and S8 use the same file for parameter controls.
Looking at the D2 only code for FX assignments, using assignment buttons with shift (with 4fxunits) allows assignments unit 3 (for left decks D2) and 4 (for right decks D2):
WiresGroup { enabled: deck.shift && (fxMode.value == FxMode.FourFxUnits) WiresGroup { enabled: decksAssignment.value == DecksAssignment.AC Wire { from: "surface.fx.assign.1"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.1.fx.assign.3"; } } Wire { from: "surface.fx.assign.2"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.2.fx.assign.3"; } } Wire { from: "surface.fx.assign.3"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.3.fx.assign.3"; } } Wire { from: "surface.fx.assign.4"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.4.fx.assign.3"; } } } WiresGroup { enabled: decksAssignment.value == DecksAssignment.BD Wire { from: "surface.fx.assign.1"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.1.fx.assign.4"; } } Wire { from: "surface.fx.assign.2"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.2.fx.assign.4"; } } Wire { from: "surface.fx.assign.3"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.3.fx.assign.4"; } } Wire { from: "surface.fx.assign.4"; to: TogglePropertyAdapter { path: "app.traktor.mixer.channels.4.fx.assign.4"; } } } }
The endless encoders and buttons below the screen control FX of Units 3 and 4 as long as they are not set to control remix/stem parameters:
WiresGroup { enabled: (fxMode.value == FxMode.FourFxUnits) && (footerPage.value == FooterPage.fx) && !isInEditMode // Effect Unit 3 WiresGroup { enabled: decksAssignment == DecksAssignment.AC WiresGroup { enabled: screenOverlay.value != Overlay.fx Wire { from: "%surface%.buttons.1"; to: "fx_units.3.enabled" } Wire { from: "%surface%.buttons.2"; to: "fx_units.3.button1" } Wire { from: "%surface%.buttons.3"; to: "fx_units.3.button2" } Wire { from: "%surface%.buttons.4"; to: "fx_units.3.button3" } } Wire { from: "%surface%.knobs.1"; to: "fx_units.3.dry_wet" } Wire { from: "%surface%.knobs.2"; to: "fx_units.3.knob1" } Wire { from: "%surface%.knobs.3"; to: "fx_units.3.knob2" } Wire { from: "%surface%.knobs.4"; to: "fx_units.3.knob3" } } // Effect Unit 4 WiresGroup { enabled: decksAssignment == DecksAssignment.BD WiresGroup { enabled: screenOverlay.value != Overlay.fx Wire { from: "%surface%.buttons.1"; to: "fx_units.4.enabled" } Wire { from: "%surface%.buttons.2"; to: "fx_units.4.button1" } Wire { from: "%surface%.buttons.3"; to: "fx_units.4.button2" } Wire { from: "%surface%.buttons.4"; to: "fx_units.4.button3" } } Wire { from: "%surface%.knobs.1"; to: "fx_units.4.dry_wet" } Wire { from: "%surface%.knobs.2"; to: "fx_units.4.knob1" } Wire { from: "%surface%.knobs.3"; to: "fx_units.4.knob2" } Wire { from: "%surface%.knobs.4"; to: "fx_units.4.knob3" } } }
The answer to this is yes. FX assignment with shift controls Unit 3 and 4 assignments, encoders and buttons below the screen control Unit 3 and 4 parameters (when not using remix deck, stem deck controls or when in EDIT mode).
1 -
Thank you for all those replies and the time that you have put in for researching!
May I add another question?
So if I set up my D2 so that it controls Deck D in Stems-Mode (I am also the lucky owner of a S4 MK3 which controls Deck B), is it possible to set the top row encoders and buttons so that they control the effect unit 3?
Out of the box they only control effect unit 2, which is also controlled by my S4 MK3. I would like to utilize the available encoders and buttons on the D2 instead of them being useless as they do the same as the ones on the S4.
If it is too complicated to get that working: Should I just use an X1 and set it to Deck CD so that I can control FX units 3&4 with it?
Thank you for your time, knowledge and wisdom in advance!
0 -
The encoders and buttons directly below the screen control Units 3 or 4 as long as they don't control stem parameters (you can switch this with the arrow buttons at the bottom left and bottom right of the screen).
But you can use the overmapping capabilities of the controller manager to remap the top controls to any Unit you like, but without screen feedback.
Or just use the X1 as you indicated.
1
Categories
- All Categories
- 19 Welcome
- 1.3K Hangout
- 59 NI News
- 706 Tech Talks
- 3.6K Native Access
- 15.2K Komplete
- 1.8K Komplete General
- 4K Komplete Kontrol
- 5.2K Kontakt
- 1.5K Reaktor
- 354 Battery 4
- 783 Guitar Rig & FX
- 403 Massive X & Synths
- 1.1K Other Software & Hardware
- 5.2K Maschine
- 6.7K Traktor
- 6.7K Traktor Software & Hardware
- Check out everything you can do
- Create an account
- See member benefits
- Answer questions
- Ask the community
- See product news
- Connect with creators