Supercontrol issue???

0 votes
asked Mar 17, 2017 in User Support, Resolved by byronsanto (800 points)
recategorized Mar 20, 2017 by MIDI Designer Team (Dan)
lots more detail (and a simplest possible example) would really help, please.
Supercontrol is a toggle button. The subcontrol is a picker with 4 named ticks. When pressed, the supercontrol does not send the correct values to the subcontrol. I can send the layout if need be.
if you can send the page -- or a new page, built from scratch -- with just the two controls to support that would be great. Refer to this QA 5778 so we don't go mad, thanks.
Will do. Thanks!

1 Answer

0 votes
 
Best answer
Picked up your page. The issue is that you must set MIDI values on the supercontrol relative to the 0-127 range (or whatever its range is). So you cannot use 0, 1, 2, 3 for 4 sub ticks. Instead you need to use 0 / 3 * 127 (0), 1/3 * 127, 2/3 * 127, and 3/3 * 127 (127)... If these numbers don't work exactly, I might have the math a tiny bit off (need to use 128 and then subtract one), but for 4 ticks (or 10 or whatever) these numbers should work out perfectly.
answered Mar 17, 2017 by MIDI Designer Team (Dan)
selected Mar 20, 2017 by MIDI Designer Team (Dan)
Thanks. I never knew that's how supercontrols worked,
...