commit daff61c77ff828b33960a8c58559751cdad63eeb
parent b1fa3502aa68f1b7c07f613e988f9a84bb18c71c
Author: Adam M <[email protected]>
Date: Wed, 20 Oct 2021 18:57:55 -0500
randomization and labels
Diffstat:
2 files changed, 11 insertions(+), 5 deletions(-)
diff --git a/src/ComputerscareHorseADoodleDoo.cpp b/src/ComputerscareHorseADoodleDoo.cpp
@@ -602,6 +602,9 @@ struct NumStepsOverKnobDisplay : SmallLetterDisplay
}
value = str;
}
+ else {
+ value = std::to_string((random::u32() % 64) + 1);
+ }
SmallLetterDisplay::draw(args);
}
};
diff --git a/src/ComputerscareMolyPatrix.cpp b/src/ComputerscareMolyPatrix.cpp
@@ -54,13 +54,16 @@ struct ComputerscareMolyPatrix : ComputerscarePolyModule {
for (int j = 0; j < numColumns; j++) {
configParam(KNOB + i * 16 + j, -2.f, 2.f, i == j ? 1.f : 0.f, "Input ch." + std::to_string(i + 1) + " → Output ch." + std::to_string(j + 1));
}
- configParam(OUTPUT_TRIM, -2.f, 2.f, 1.f, "Output Attenuation");
- configParam(OUTPUT_OFFSET, -10.f, 10.f, 0.f, "Output Offset");
- configParam(INPUT_TRIM, -2.f, 2.f, 1.f, "Input Attenuation");
- configParam(INPUT_OFFSET, -10.f, 10.f, 0.f, "Input Offset");
- configParam<AutoParamQuantity>(POLY_CHANNELS, 0.f, 16.f, 0.f, "Poly Channels");
}
+ configParam(OUTPUT_TRIM, -2.f, 2.f, 1.f, "Output Attenuation");
+ configParam(OUTPUT_OFFSET, -10.f, 10.f, 0.f, "Output Offset");
+ configParam(INPUT_TRIM, -2.f, 2.f, 1.f, "Input Attenuation");
+
+ configParam(INPUT_OFFSET, -10.f, 10.f, 0.f, "Input Offset");
+ configParam<AutoParamQuantity>(POLY_CHANNELS, 0.f, 16.f, 0.f, "Poly Channels");
+
+ getParamQuantity(POLY_CHANNELS)->randomizeEnabled = false;
}
void checkPoly() override {