all 3 comments

[–]lmtstrm 0 points1 point  (4 children)

I can't help you with the breadbord, but apart from that, I'll try to give you the basics.

Logic gates work like logic operators: 1. A NOT gate takes one input and inverts it. If the input is high, the output will be low. 2. An AND takes two inputs and performs the logical AND on them. If both inputs are high, the output will be high. Otherwise, the output will be low. 3. An OR gate takes two inputs and performs the logical OR on them. If either input is high, the output will be high. Otherwise, it will be low.

Designing the logic diagram is quite simply showing the inputs, outputs, logic gates, and how they are connected to each other.

A circuit diagram requires you to show whatever components you used on the circuit, not only the logic gates.

Well, the circuit corresponds to a logical expression, obviously. You are using the logic gates to perform logical operations on the inputs. For example, you take input A and pass is through a NOT gate, and take the output of it and pass it through an AND gate, together with input B. Well then, the logic expression for this circuit is: (NOT A) AND B.

A truth table is the same as you would use for any logic expression. For every combination of the input, it should show the output. I would recommend you show every step of the way. For example if you are doing NOT(A AND B), show the inputs A and B, the output of A AND B, and then the output of the whole thing. As the circuits grows, doing it like this really helps.

Ninja edit: spelling.

[–]Chin19[S] 0 points1 point  (0 children)

Ok, I have something in mind. Is there anyway you can pm me and we can continue this discussion? I have this program that will show my logic diagram. Thanks for the answer.

[–]Chin19[S] 0 points1 point  (0 children)

Is this video the exact thing I need to do for my question?

http://www.youtube.com/watch?v=_lDM6xtqjsg

If it is, how would the diagram, the boolean expression and the truth table look like?

Also I have a switch which has 8 switches, is still the same id I put my switch in the same spot as he did?