commit 5e486d0ccd5ce98b72caa18dd46dff4285825a5a
parent 3ac4038bf4246bcd1c160b70a893c0edbde74200
Author: Adam <[email protected]>
Date: Mon, 19 Aug 2019 10:17:28 -0500
Update README.MD
Diffstat:
M | README.MD | | | 32 | +++++++++++++++++++++----------- |
1 file changed, 21 insertions(+), 11 deletions(-)
diff --git a/README.MD b/README.MD
@@ -7,37 +7,47 @@
<img src="https://github.com/freddyz/computerscare-vcv-modules/blob/master/doc/ohpeas-basic-1.png" width="500" alt="Oh Peas! Quad Quantenuverter" />
### Text Input:
-The scale for quantization is programmed via the text field.
+The scale for quantization is programmed via the text field. Oh Peas! expects numbers that mean “how many steps to the next note”. For example, the major triad “scale” (C, E, G) is programmed by entering `43` (meaning: 4 half steps, and then 3 half steps). The minor triad (C, E flat, G) = `34` (3 half steps, then 4 half steps). The major scale would be `221222` (whole, whole half whole whole whole). The final half step back to the root note is always “implied” so you can safely skip it. Right click to see and select some pre-programmed common scales.
### Input Jacks:
-**Main Input (input):** Increases each row's absoluteStep by 1.
+**Main Input (input, _A_):**
-**Range CV (range):** Resets each row's absoluteStep to 0.
+**Range CV (range, _B_):** Multiplies the input value, attenuverted by the small Range CV knob
-**Offset CV (offset):** Increases the row's absoluteStep by 1. If a cable is plugged in, the row ignores the Global Clock.
+**Offset CV (offset, _C_):** Offset for the input value, attenuverted by the small Offset CV knob
### Knobs:
**Number of Divisions (divisions):** How many equal divisions the octave is split into. Default is 12.
-**Transpose:** Amount to add or subtract to final output signal. Values between -NumDivisions and +NumDivisions, which is equivalent to +/- 1 octave.
+**Transpose:** Amount to add or subtract to final output signal. Values between -NumDivisions and +NumDivisions, which is equivalent to +/- 1 octave. The default is 0, which means that an input voltage of 0v outputs v/oct C.
-**Range CV Attenuverter ("range", small knob):** Attenuverter for the Range CV input. Scales Range CV between -1 and +1
+**Range CV Attenuverter ("range", small knob, _b_):** Attenuverter for the Range CV input. Scales Range CV between -1 and +1
-**Range Knob ("range", large knob):** Attenuverter for Main Input signal. Scales Main Input between -1 and +1
+**Range Knob ("range", large knob, _a_):** Attenuverter for Main Input signal. Scales Main Input between -2 and +2
-**Offset CV Attenuverter ("offset", small knob):** Attenuverter for the Range CV input. Scales Range CV between -1 and +1
+**Offset CV Attenuverter ("offset", small knob, _c_):** Attenuverter for the Range CV input. Scales Range CV between -1 and +1
-**Offset Knob ("offset", large knob):** Constant offset to add after "range" section is applied. +/- 5 volts.
+**Offset Knob ("offset", large knob, _d_):** Constant offset to add after "range" section is applied. +/- 5 volts.
### Output Jacks:
-**Attenuverted, Offset Output (out):** The attenuverted and offset main input signal. A*(a + B*b) + C*c + d
+**Attenuverted, Offset Output (out):** The attenuverted and offset main input signal. The formula is:
-**Quantized Output (quantized):** The attenuverted and offset main input signal, quantized to the desired scale.
+~~~~
+<INPUT> * (<range knob> + <RANGE CV> * <range attenuverter>) +<offset knob> + <OFFSET CV> * <offset attenuverter>
+~~~~
+
+or... a bit easier to read using the italic letters above in the input/knob descriptions
+
+~~~~
+A*(a + B*b) + C*c + d
+~~~~
+
+**Quantized Output (quantized):** The attenuverted and offset main input signal, quantized to the desired scale. The quantization works a bit differently than other quantizers. Oh Peas first figures out how many steps are in the defined scale, and then equally distributes the input signal between the allowed scale notes. This is easiest to understand by feeding a sawtooth LFO wave into the input, and noticing that the quantized output produces the scale values each with an equal amount of time. Most quantizers seem to map the input voltage to the closest allowed scale note which makes a sawtooth wave spend more time on the notes that are farther away from their neighbors. One implication of this is that plugging the V/Oct of a midi keyboard into Oh Peas will mean some notes on the keyboard will not be quantized to the same output note of Oh Peas! In fact, that's why it's called "Oh Peas!"
~~~~