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
Altimutater Posted February 22 Report Posted February 22 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...
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now