/usr/share/mixxx/controllers/Kontrol-Dj-KDJ500-scripts.js is in mixxx-data 2.0.0~dfsg-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | KDJ500 = new Controller();
KDJ500.init = function (id, debugging) {
}
KDJ500.shutdown = function () {
}
KDJ500.jog = function (channel, control, value, status, group) {
if(value==0x7F) engine.setValue(group,"jog",1);
if(value==0x01) engine.setValue(group,"jog",-1);
}
KDJ500.track = function (channel, control, value, status, group) {
if(value==0x7F) engine.setValue("[Playlist]","SelectTrackKnob",1);
if(value==0x01) engine.setValue("[Playlist]","SelectTrackKnob",-1);
}
|