goldjunge Posted October 31, 2024 Report Posted October 31, 2024 I would like to address certain LEDs of the encoders of the behringer xtouch mini and would need an example of the corresponding command ? many thanks Achim 1 Quote
Altimutater Posted 1 hour ago Report Posted 1 hour ago I was also stuck on this... found the solution! You can send "con" (constant) values to the MIDI controls (I think that's the right terminology) - same cc values as for reading the encoders i.e. 1-8 and 51-58 0 is all left LEDs lit, 64 is centre LED lit, 127 is all right LEDs lit, and if you give values greater than 127 it loops round e.g. 128 = 0 mapping_out [ # Layer A, first encoder, light all the left LEDs { ch = 11, cc = 1, type = "con", data_2 = 0 }, # Layer A, fourth encoder, light half the left LEDs { ch = 11, cc = 4, type = "con", data_2 = 31 }, # Layer B, second encoder, light just the top LED { ch = 11, cc = 52, type = "con", data_2 = 64 }, # Layer B, eight encoder, light all the right LEDs { ch = 11, cc = 58, type = "con", data_2 = 127 }, ] No doubt they could also be driven by dataref values... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.