Jump to content

Recommended Posts

  • 1 year later...
Posted

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...

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...