Browse Source

CVMix: Add descriptions to inputs about normalled voltages.

tags/v2.6.1
Andrew Belt 10 months ago
parent
commit
1378be0a40
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      src/CVMix.cpp

+ 3
- 1
src/CVMix.cpp View File

@@ -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");
}


Loading…
Cancel
Save