Browse Source

Label wave outputs as "Wavetable" on WTLFO/WTVCO.

tags/v2.0.1
Andrew Belt 3 years ago
parent
commit
c49eb45037
2 changed files with 5 additions and 2 deletions
  1. +4
    -1
      src/WTLFO.cpp
  2. +1
    -1
      src/WTVCO.cpp

+ 4
- 1
src/WTLFO.cpp View File

@@ -73,11 +73,14 @@ struct WTLFO : Module {
getParamQuantity(FM_PARAM)->randomizeEnabled = false;
configParam(POS_CV_PARAM, -1.f, 1.f, 0.f, "Wavetable position CV", "%", 0.f, 100.f);
getParamQuantity(POS_CV_PARAM)->randomizeEnabled = false;

configInput(FM_INPUT, "Frequency modulation");
configInput(RESET_INPUT, "Reset");
configInput(POS_INPUT, "Wavetable position");
configInput(CLOCK_INPUT, "Clock");
configOutput(WAVE_OUTPUT, "Wave");

configOutput(WAVE_OUTPUT, "Wavetable");

configLight(PHASE_LIGHT, "Phase");

lightDivider.setDivision(16);


+ 1
- 1
src/WTVCO.cpp View File

@@ -65,7 +65,7 @@ struct WTVCO : Module {
configInput(POS_INPUT, "Wavetable position");
configInput(PITCH_INPUT, "1V/octave pitch");

configOutput(WAVE_OUTPUT, "Wave");
configOutput(WAVE_OUTPUT, "Wavetable");

configLight(PHASE_LIGHT, "Phase");



Loading…
Cancel
Save