Browse Source

Decrease Rampage trigger input threshold to 2V

tags/v0.6.0
Andrew Belt 7 years ago
parent
commit
11c874988c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/Rampage.cpp

+ 1
- 1
src/Rampage.cpp View File

@@ -68,7 +68,7 @@ struct Rampage : Module {

Rampage() : Module(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS, NUM_LIGHTS) {
for (int c = 0; c < 2; c++) {
trigger[c].setThresholds(0.0, 4.0);
trigger[c].setThresholds(0.0, 2.0);
}
}
void step() override;


Loading…
Cancel
Save