Closed firolightfog closed 2 years ago
I'm not sure which one is better:
valueOCT
valueRNG
voltA, voltB, voltC, voltSUM
stepA, stepB, stepC
= Option 1 (as of v2.1.6)
voltA=stepA * valueRNG + valueOCT voltB=stepB * valueRNG + valueOCT voltC=stepC * valueRNG + valueOCT voltSUM=voltA+voltB+voltC
= Option 2 (as of v2.1.7)
voltA=stepA * valueRNG + valueOCT voltB=stepB * valueRNG + valueOCT voltC=stepC * valueRNG + valueOCT voltSUM= (stepA+stepB+stepC ) * valueRNG + valueOCT
I'm not sure which one is more intiutive. Option 2 makes more sense to me as I can easily add/sum voltA, voltB, voltC with a bunch of separate modules.
I decided for option 2. Available in v2.1.7 Live with it
I'm not sure which one is better:
valueOCT
: is the value of the OCT knobvalueRNG
: is the value of the (unlabelled) RNG knob -voltA, voltB, voltC, voltSUM
: are variables for the output voltagesstepA, stepB, stepC
: are the knob values of the actual step= Option 1 (as of v2.1.6)
= Option 2 (as of v2.1.7)
I'm not sure which one is more intiutive. Option 2 makes more sense to me as I can easily add/sum voltA, voltB, voltC with a bunch of separate modules.