
Originally Posted by
ZiiK
a couple of more q's come to mind...
are the layer layouts and notes fixed as in the generic presetguide found at stantons homepage or is it possible to chose to put three faders on all six modes?
yes u can do that. the scs3d just changes it's mode when a sysex message is received - so just need to ensure the one u need is sent out from the layer-change call. if u just wanted the fader mode all the time then no need to send out anything after startup ofc.
You say that you remade the triggerpattern to 3x4, is that space the same way as seen in video from the mixxx software crew? one point every second led along the sliders.
i haven't seen the video. i just divided up the central vertical slider into the same 4 areas u get from the left and right hand ones. it's a great idea in theory but not sure now so much in practice as i have found myself pressing the wrong ones at time - hence why i guess stanton decided to just use it as a single fader even in button mode.
And how do you set that up? I have a theory... not sure it's right though.
the faders send out a note on inititally followed by the cc's for absolute and relative movement so my code uses the noteon to indicate when it has been pressed but works out what "button" has been pressed (and then process it) once it gets the absolute cc value.
so something like:
* if we get a non zero noteon message remember that the user has pressed a "button" somewhere on the fader
* if we get a cc work out what "button" has been pressed and send noteon message for that button if we haven't done already
* if we get a noteoff message send/process the noteoff for the "button" that was used
this is the midi coming out of that fader area:
Code:
-- central bottom fader
add_control("fader5_press", 1, "note", 1);
add_control("fader5", 1, "cc", 1);
add_control("fader5_relative", 1, "cc", 2);
edit: one more thing, when using the circular bit does that also have an absolute cc? And where is the startingpoint? Where on the "clock"?
all faders have relative and absolute messages. in mm events like faderX are the absolute while faderX_relative is the relative. faderX_press is the noteon/off. don't remember where the circular control starts off hand - 12 oclock i think/presume
Bookmarks