Kontrol S2MK3 - Map GRID button

kourampies
kourampies Member Posts: 5 Member
edited February 27 in Mapping Traktor

The S2MK3 has a GRID button which I would love to map as FX unit toggle.

This button does not do anything when pressed on Learn mode and I can't find it on any button lists if I don't use learn.

How can I map this button?

Tagged:

Comments

  • Nico_NI
    Nico_NI Administrator Posts: 1,124 admin

    Could not find much on this, it doesn't seem like the GRID button can be mapped.

  • BlockParty
    BlockParty Member Posts: 1 Newcomer

    I just got my first NI controller, also the S2 MK3. Exactly the same, wanted to map the GRID button to the set master function. This feature doesn't seem to be natively implemented into this controller mapping. What a shame, since this is needed basically for every other transition, how can this be missing?

    Well, I hoped that someone here has a solution, but it seems like this button was forgotton by the board developers.

    Firstly: what a shame. Secondly: What a useless button on a clean performance controller. Why would you do prep-work while DJing?

    All weird decisions, well.

  • pixel
    pixel Member Posts: 78 Helper
    edited April 6

    you can use the grid button with qml😀

     Wire {
       enabled: module.active
       from: "%surface%.grid_adjust";
       to: TogglePropertyAdapter{ path: deckPropertiesPath + ".grid_adjust"; value: true }
     }
    
     Wire {
       enabled: module.active
       from: "%surface%.grid_adjust";
       to: ButtonScriptAdapter {
          onPress: {
             gridAdjust = true;
          }
          onRelease: {
             gridAdjust = false;
          }
       }
     }
    
Back To Top