BOOLEAN 24A

The Boolean module is for logic processing.
features- two inverters, AND gate, OR gate and an XOR gate.

The Inverter sections are used to invert or flip a gate or clock pulse. This is useful if you want to delay a clock pulse by one step or have secondary gate that is opposite to the primary gate i.e. one gate is on while the other is off.

The AND gate takes two pulse signals and applies conditional functions.
When both input pulses are high (on), the output is high.
When only one of the inputs is high and one is low (off) the output is low.

Example patch using the AND gate:
Input one - a clock set to 120 bpm
Input two- a gate from a midi>cv converter
connected to a midi keyboard.
Output- fed to the clock input of the sequencer.
The result is that when a key is played it allows the sequencer to step at 120bpm for as long as the key is depressed. This functions like a switch

There are many other uses for the Boolean module
-create clock rhythms to control sequencers
-chaotic LFO patterns
-alternating Envelope gating (Inverters)
-can be used on audio range square waves too

The OR and XOR gates function similarly to the AND
gate but with different conditions. (see the table for details)

AND Gate Low +Low Low

Low+High

Low
High+Low Low
High+High High
OR Gate Low+Low Low

Low+High

High

High+Low

High

High+High

High
XOR Gate Low+Low Low

Low+High

High

High+Low

High
High+High Low