So, as these Parts are Flip Flops, i wanted to start understanding them
with switching an LED on and off, but i didn’t find any information on
how to use these things… I had some experience with digital
techniques at school, but nothing really usable (At least, nothing of it
has stayed in my head until now lol)
Does anybody have some elementary Information on what they do
and how they can be used for me? Can i just use a switch, an LED
and some sort of Battery or so and it works? Or is teremore needed
for my testing?
So that’s 4 exclusive OR gates. Power with 5V and ground. Take one output and wire it up through a 470R resistor to an LED. Put a push switch on each of the 2 inputs with a 3K3 pull up resistor to +5V, other end of switch to ground. The LED will only light up if the state of the two switches are different.
DL074D = 74LS74 is a Dual D Positive Edge Triggered Flip-Flop with Preset and Clear.
So that is two edge triggered D type latches. Power with 5V and ground. Take one Q output and wire it up through a 470R resistor to an LED. Put a push switch on the D and the CK inputs with a 3K3 pull up resistor to +5V, other end of switch to ground. Wire pre set and clear to ground. Change the state of the D input, nothing happens until the CK input goes from a logic low to a logic high. When this happens the logic state on D is transferred to the output Q.
DL010D = SN74LS10 is a Triple 3-input NAND gate
So that’s 3 NOT AND or NAND gates. Power with 5V and ground. Take one output and wire it up through a 470R resistor to an LED. Put a push switch on each of the 3 inputs with a 3K3 pull up resistor to +5V, other end of switch to ground. The LED will be on if the any one or more switches are off.
Do you have more than one 7474? The neatest thing I ever made from small scale logic like that was shift registers (your basic Kit Car blinking LEDs.) You can probably make an oscillator with the NAND gates, and 2 or more 7474s will make a decent number of blinking lights.
You’ll appreciate the arduino more that way as well…
A set of bounceless pushbuttons and/or switches are handy to have as well, and should be achievable with the NAND gates. Using your three-input NANDs instead of the usual 2-input gates is left as an exercise for the student.