Hello!
I’ve recently got my beautiful Weaver home. Mainly i’ll use it for 12 ch mixer and a launchpad that can handle up to 12 channels at once.
I’ve been testing the YURS script and most functions are working correctly, but I’m having issues with the Value to Color function on my 7x13 clip launcher.
All buttons are mapped properly, and I can control the full Session View. The problem is that when I scroll through the set, some LEDs stay lit even when there are no clips, and some LEDs show the wrong color (different from what Ableton is sending).
For example, in the screenshots, the layout is mirrored: the first column represents the “kick” track, and the “risers” track is the second-to-last column. As you can see, the 4th scene is illuminated even though it has no clips, and many of the other rows have phantom lit up buttons. When I scroll with the directional buttons, this row stays lit until I press one of the lit buttons. At that point, the LED turns off but no clip is triggered (since there’s no clip underneath). I’ve seen this happen with the 6th and 7th row as well where buttons will stay lit and not reflect me scrolling through the set.
It’s like the more i scroll up and down through the set, the more LEDs remain stuck or get confused.
Could you help point me toward what to try next and why the Value to Color function is keeping these LEDs active or assigning incorrect colors? Track 5 is also a group track that contains both an Audio and a Midi track, could that be an issue?
For reference the 8th row is a stop clip row, and the 14th red column is scene launcher.
1 Like
This was solved by changing the
STRIP_PARAM1_CONTROLS_ENABLED to False as previously described.
Much more reactive now.
Instead, a question regarding Value to Intensity.
If i’d instead of Value to Color, want to use Value to Intensity for the stop clip row at the bottom of the clip launcher (row 8), how would i set this up in Kilowhat? I would like these to be dimly lit in a fixed color when no clip is playing, and light up in intensity if a clip in that column is playing, is this possible? I’ve tried changing the Feedback Config to Channel 15 (as described previously), also changed the global channel around to no avail.
Hello @martinou3000 !
Thanks for posting and welcome to the forum!
I was preparing the answer pointing to that exact post and you replied that you solved it!
That’s good to hear
Works like a charm now!
Did you also have time to check out the question regarding Value to Intensity in the reply? I’m at a loss how to proceed. 
We have a feature called “Low Intensity Off”
It’s quite straightforward 
If instead of Value To Color, you use Fixed mode, you will get a selector to enable the Low Intensity behavior for the OFF state.
After this you have two options:
- Either set the MAX value of the buttons to 22 which is the value the script sends to turn the buttons ON.
- Or change in the script, line 267, the StopClip color to 127, so the script sends the right velocity to turn the buttons on.
class Session:
StopClipDisabled = MonoColor(0)
StopClipTriggered = MonoColor(75)
StopClip = MonoColor(22) # <--- STOP CLIPS ON
Scene = MonoColor(118)
NoScene = MonoColor(0)
SceneTriggered = MonoColor(57)
ClipTriggeredPlay = MonoColor(7)
ClipTriggeredRecord = MonoColor(5)
RecordButton = MonoColor(121)
ClipEmpty = MonoColor(0)
ClipStopped = MonoColor(120)
ClipStarted = MonoColor(43)
ClipRecording = MonoColor(109)
NavigationButtonOn = MonoColor(102)
NavigationButtonOff = MonoColor(2)
ZoomOn = MonoColor(36)
ZoomOff = MonoColor(0)
SelectedClipLaunch = MonoColor(8)
SelectedSceneLaunch = MonoColor(88)
Hope you can make it!
Worked like a charm setting them to 22, thank you so much! 