summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBe <be@mixxx.org>2020-07-29 10:49:15 -0500
committerBe <be@mixxx.org>2020-07-29 13:36:54 -0500
commitf43304a2d1ccf5f4792e4a7a58c5b76ef405322a (patch)
treed25fae9a8da22deab4e902e0e45aef654ba260f7
parente9e040c01a1ed1e0f18519a7f5c883bceeb4a7ef (diff)
NI Traktor Kontrol S2 Mk2: change dim LED brightness to 1
9 is too easy to confuse with full lighting in dark environments with the power supply plugged in.
-rw-r--r--res/controllers/Traktor-Kontrol-S2-MK2-hid-scripts.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/res/controllers/Traktor-Kontrol-S2-MK2-hid-scripts.js b/res/controllers/Traktor-Kontrol-S2-MK2-hid-scripts.js
index ec34cadfb0..c3355c6e52 100644
--- a/res/controllers/Traktor-Kontrol-S2-MK2-hid-scripts.js
+++ b/res/controllers/Traktor-Kontrol-S2-MK2-hid-scripts.js
@@ -18,7 +18,7 @@ var ShiftCueButtonAction = "REWIND";
// Set the brightness of button LEDs which are off and on. This uses a scale from 0 to 0x7f (127).
// If you don't have the optional power adapter and are using the controller with USB bus power,
// 0x09 is probably too dim to notice.
-var ButtonBrightnessOff = 0x09;
+var ButtonBrightnessOff = 0x01;
var ButtonBrightnessOn = 0x7f;
TraktorS2MK2 = new function() {