Browse Source

Macro Oscillator: Change range of coarse pitch parameter and default value to match hardware.

tags/v1.1.0
Andrew Belt 5 years ago
parent
commit
2a0e9a9360
2 changed files with 4 additions and 1 deletions
  1. +3
    -0
      CHANGELOG.md
  2. +1
    -1
      src/Braids.cpp

+ 3
- 0
CHANGELOG.md View File

@@ -1,3 +1,6 @@
### 1.0.3 (in development)
- Macro Oscillator: Change range of coarse pitch parameter and default value to match hardware.

### 1.0.2 (2020-02-29)
- Add ModularGrid URLs to manifest.



+ 1
- 1
src/Braids.cpp View File

@@ -42,7 +42,7 @@ struct Braids : Module {
config(NUM_PARAMS, NUM_INPUTS, NUM_OUTPUTS);
configParam(SHAPE_PARAM, 0.0, 1.0, 0.0, "Model");
configParam(FINE_PARAM, -1.0, 1.0, 0.0, "Fine frequency adjustment");
configParam(COARSE_PARAM, -2.0, 2.0, 0.0, "Coarse frequency adjustment");
configParam(COARSE_PARAM, -5.0, 3.0, -1.0, "Coarse frequency adjustment");
configParam(FM_PARAM, -1.0, 1.0, 0.0, "FM");
configParam(TIMBRE_PARAM, 0.0, 1.0, 0.5, "Timbre");
configParam(MODULATION_PARAM, -1.0, 1.0, 0.0, "Modulation");


Loading…
Cancel
Save