Skip to content

Commit

Permalink
0.0.2 (#4)
Browse files Browse the repository at this point in the history
* 4DCB

* Update pages/squonk/squonk.md

* Squonk, authored by Jim Aikin

Authored-By: midiguru23 <midiguru23@users.noreply.github.com>

* squonk md format

* Update pages/squonk/squonk.png

* Update pages/squonk/squonk.md

* Update README.md

* First version of Logic.md

* Added files for MetaAardvark (#3)

* Add files via upload

* Add files via upload

* big update

* added MetaAardvark

Authored-By: fractalgee <fractalgee@users.noreply.github.com>

* Update metaaardvark.md

* quickfix links

* eeps!
  • Loading branch information
patman023 committed Nov 27, 2018
1 parent a13402a commit 87d3abc
Show file tree
Hide file tree
Showing 18 changed files with 7,205 additions and 1,876 deletions.
4,134 changes: 2,263 additions & 1,871 deletions NYSTHI_Changelog0.6.27_Parsed.txt → NYSTHI_Changelog0.6.31_Parsed.txt

Large diffs are not rendered by default.

22 changes: 17 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,22 @@
# nysthimanual
![](https://github.com/patman023/nysthimanual/blob/master/allmodules20181022.png)
Manual project for https://github.com/nysthi/nysthi

![](./allmodules20181022.png)

Project timeline:
- 2018-11-12: created all .md files for modules to 0.6.30
Manual project for NYSTHI modules for VCV Rack!

https://github.com/nysthi/nysthi

Last updated 2018-11-12
https://vcvrack.com/

Join our NYSTHI Manual team! https://www.facebook.com/groups/nysthimanual/

alpha-ready pages:

- [4DCB](./pages/4dcb/4dcb.md)
- [Dica 33](.pages/dica_33/dica_33.md)
- [Logic](./pages/logic/logic.md)
- [MetaAardvark](./pages/metaaardvark/metaaardvark.md)
- [Squonk](./pages/squonk/squonk.md)


Last updated 2018-11-26
32 changes: 32 additions & 0 deletions pages/4dcb/4dcb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# 4DCB

Antonio says:

0.5.12.0

a 4 times DC BLOCK filter, current sample rate aware

---- needed to avoid unwanted Direct Current build up a the end of a module

0.5.13.0

it is possible to set the HP frequency from PRESETs in the contextual menu (5, 10, 15, 20 30 Hz)

0.6.2

solved a crosstalk bug (some cleaning for the 4 dc filters!)
---

![](./4dcb.png)

Type: Utility / (Limited) High Pass Filter

Size: 2 HP

4DCB is 4 instances of a High Pass Filter, which when used as intended, will keep Direct Current from reaching your speakers [\(*a **very** bad thing*\)](https://electronics.stackexchange.com/questions/233230/why-are-dc-signals-bad-for-loud-speakers).

In the image above, the S+H is beig clocked at 2 HZ, and the 4dcb is set to 30Hz (via the context menu). The DC (pink line) signal is being attenuated before it can pass through to the output (as shown by the blue line).

Extra Context Menu Options:

- Set to *(5, 10, 15, 20, 30)* Hz
Binary file added pages/4dcb/4dcb.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
81 changes: 81 additions & 0 deletions pages/logic/logic.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
# Logic

Index
1. [Antonio Says](logic.md#antonio-says)
2. [Basics](logic.md#basics)
3. [In Practice](logic.md#in-practice)
- [NOT Gates](logic.md#not-gates)
- [AND, OR, & XOR Gates](logic.md#and-or--xor-gates)
4. [Why?](logic.md#why--)



Antonio says:

0.4.0
a simple module for boolean logic, Was my gym to learn VCV modules
0.5.0
streamlined version, and color codes... (white sockets, inputs, black sockets, outputs)
---
## Basics

![](./Logic.png)

Type: Utility / Trigger/Gate Control

Size: 5 HP

Description: 2 pairs each of ***DIGITAL*** AND, NOT, OR, and XOR Logic Gates.

Digital is important here, because the module will *only* output a 100% duty cycle pulse wave at +5.00V when the Gate condition is matched.

---

## In Practice

Inputs are considered "ON" when the voltage is equal to or greater than +1.00 V, and ignore negative voltage altogether.

Outputs are either ON at +5V or OFF at 0V.

### NOT Gates

IN ON = OUT OFF

IN OFF = OUT ON

### AND, OR, & XOR Gates

|IN1|+|IN2|=|AND|OR|XOR|
|---|---|---|---|---|---|---|
|OFF|+|OFF|-->|OFF|OFF|OFF|
|OFF|+|ON|-->|OFF|ON|ON|
|ON|+|OFF|-->|OFF|ON|ON|
|ON|+|ON|-->|ON|ON|OFF|

---

## Why?

There are many reasons to use Logic Gates in your patches, with just one of them being creating different rhythmic patterns.

For example: Say you wanted to set up a 4/4 backbeat-style pattern, where the Kick was on 1, and the Snare was on 2.

You could:

``` \start and end codeblock with 3 backticks
a) Fire up a sequencer and program it in (taking both screen and processing real estate); OR
b) use your clock and a couple of Logics to set up the entire pattern.
```

![](./logic2.png)

As seen in the above patch, the output of:

NOT bpm/8
AND bpm/4
AND bpm/2
AND bpm/1

Gives you a pulse on beat 2 and beat 4.

![](./logic3b.png)
Binary file added pages/logic/logic.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pages/logic/logic2.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pages/logic/logic3a.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pages/logic/logic3b.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 87d3abc

Please sign in to comment.