commit e915c45fbfb409e039c09ca30e21b9b5563affb4
parent 4f4a40272043da6f2f97f741a07ac87256efe7ec
Author: Adam M <[email protected]>
Date: Sat, 4 Aug 2018 14:08:45 -0500
update readme
Diffstat:
2 files changed, 18 insertions(+), 17 deletions(-)
diff --git a/Makefile b/Makefile
@@ -3,11 +3,11 @@ RACK_DIR ?= ../..
# Must follow the format in the Naming section of
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html
-SLUG = Computerscare
+SLUG = computerscare
# Must follow the format in the Versioning section of
# https://vcvrack.com/manual/PluginDevelopmentTutorial.html
-VERSION = 0.6.0
+VERSION = 0.6.2
# FLAGS will be passed to both the C and C++ compiler
FLAGS +=
diff --git a/README.MD b/README.MD
@@ -10,42 +10,43 @@ If you've ever wished that patch cables could be sequenced, this is the module f
Father & Son Patch Sequencer allows for the sequencing of connections. It's somewhat like a giant sequential switch.
### Buttons:
-*Patch Matrix: Grid of 100 buttons. When the button is lit in green, it means that the input column and output row is connected for the step that is being edited. When the button is lit in red, it means that the input column and output row is connected for the currently active step.
+**Patch Matrix:** Grid of 100 buttons. When the button is lit in green, it means that the input column and output row is connected for the step that is being edited. When the button is lit in red, it means that the input column and output row is connected for the currently active step.
-*Next Active Step: Moves to the next active step. If the sequence length is set to greater than 1, the red lights in the patch matrix will change.
+**Next Active Step:** Moves to the next active step. If the sequence length is set to greater than 1, the red lights in the patch matrix will change.
-*Previous/Next Editing Step: Move to edit the previous or next step. Note that this will always cycle from 1 to 16 no matter what number of steps the knob is set to.
+**Previous/Next Editing Step:** Move to edit the previous or next step. Note that this will always cycle from 1 to 16 no matter what number of steps the knob is set to.
### Knobs:
-*Number of Steps: Choose between 1 and 16 steps.
+**Number of Steps:** Choose between 1 and 16 steps.
### Inputs:
-*Clock: Moves to the next active step. If the currently active step is equal to the number-of-steps, it will go back to step 1. Does the same thing as the 'Next Active Step Button'.
+**Clock:** Moves to the next active step. If the currently active step is equal to the number-of-steps, it will go back to step 1. Does the same thing as the 'Next Active Step Button'.
-*Randomize: Randomizes the patch matrix for the current editing step. Randomly enables exactly one input for each output. Does the same thing as the 'randomize' selection from the right-click menu.
+**Randomize:** Randomizes the patch matrix for the current editing step. Randomly enables exactly one input for each output. Does the same thing as the 'randomize' selection from the right-click menu.
-*Input Column: 10 input jacks for any sort of signal you want.
+**Input Column:** 10 input jacks for any sort of signal you want.
### Outputs:
-*Output Row: 10 output jacks which output the sum of the signals in that particular column.
+**Output Row:** 10 output jacks which output the sum of the signals in that particular column.
### Possible applications:
-*Triggers:
+**Triggers:**
-*Envelopes / CV:
+**Envelopes / CV:**
-*Audio:
+**Audio:**
-Inspired by Strum's Patch Matrix and Bidoo's ACnE Mixer.
+
+*Inspired by Strum's Patch Matrix, Bidoo's ACnE Mixer, and Fundamental Sequential Switch*
## Debug
A simple module for debugging. Displays a list of the last 16 voltages read from IN, with the most recent one at the top.
### Inputs:
-*Trigger: When a trigger signal is detected, the voltage at the Input will be placed at the top of the list of voltages, and the voltage at the bottom will be discarded from the display.
+**Trigger:** When a trigger signal is detected, the voltage at the Input will be placed at the top of the list of voltages, and the voltage at the bottom will be discarded from the display.
-*Input: Any sort of signal you wish to probe.
+**Input:** Any sort of signal you wish to probe.
-*Clear: Reset the list of voltages back to all zeros.
+**Clear:** Reset the list of voltages back to all zeros.