Page 1 of 1
Boolean Logic Sequencer Error
Posted: Tue Nov 26, 2024 9:55 pm
by Xeys42
Re: Boolean Logic Sequencer Error
Posted: Tue Nov 26, 2024 11:57 pm
by ColinP
This is the expected behaviour.
One of the inputs is disconnected therefore always zero, let's say it is the B input that's disconnected
so B = 0
Looking at the truth table for NOR
A B Q
0 0 1
0 1 0
1 0 0
1 1 0
Now when A (the LFO) is 0 the output is 1.
When A is 1 the output is 0.
With XNOR...
A B Q
0 0 1
0 1 0
1 0 0
1 1 1
Same result.
So in both circumstances the clock is just being inverted and the sequencer advances (albeit a half cycle out of phase).
Re: Boolean Logic Sequencer Error
Posted: Wed Nov 27, 2024 9:03 am
by ColinP
Also if your intention is for the LFO to control the tempo of the sequencer you need to feed its output to the sequencer's EXT CLK socket and engage the EXT button as shown below.
- lfoAsClock.png (266 KiB) Viewed 70 times
You could then add an AND gate into this path to enable or disable the LFO's external clock signal (which is what I'm guessing you were experimenting with).
In your screenshots the LFO is just starting the sequencer and the sequencer is running on its own internal clock. So the only impact the LFO RATE knob will have is how quickly the sequencer starts.