From 1378be0a40ad5d33bb249880cd41f0d0cb54fd19 Mon Sep 17 00:00:00 2001 From: Andrew Belt Date: Sun, 16 Jun 2024 05:57:57 -0400 Subject: [PATCH] CVMix: Add descriptions to inputs about normalled voltages. --- src/CVMix.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/CVMix.cpp b/src/CVMix.cpp index 99e27bd..9eb2625 100644 --- a/src/CVMix.cpp +++ b/src/CVMix.cpp @@ -26,8 +26,10 @@ struct CVMix : Module { for (int i = 0; i < 3; i++) configParam(LEVEL_PARAMS + i, -1.f, 1.f, 0.f, string::f("Level %d", i + 1), "%", 0, 100); - for (int i = 0; i < 3; i++) + for (int i = 0; i < 3; i++) { configInput(CV_INPUTS + i, string::f("CV %d", i + 1)); + getInputInfo(CV_INPUTS + i)->description = "Normalled to 10 V"; + } configOutput(MIX_OUTPUT, "Mix"); }