Digital Logic Circuits

Slides:



Advertisements
Similar presentations
Computer Science 210 Computer Organization Introduction to Logic Circuits.
Advertisements

L14: Boolean Logic and Basic Gates
Digital Logic Circuits
Appendix B Digital Logic. Irvine, Kip R. Assembly Language for Intel-Based Computers, NOT AND OR XOR NAND NOR Truth Tables Boolean Operators.
1 Homework Reading –Tokheim, Section 5-10, 7-4 Machine Projects –Continue on MP4 Labs –Continue labs with your assigned section.
Laboratory 5: Introduction to LabVIEW. Overview Objectives Background Materials Procedure Report / Presentation Closing.
EG1003: Introduction to Engineering and Design Introduction to LabVIEW.
In this module you will learn: What the various logic gates do. How to represent logic gates on a circuit diagram. The truth tables for the logic gates.
Introduction to Digital Design Lab Project
Logic Gate A logic gate is an electronic circuit which makes logic decisions. It has one output and one or more inputs. The output signal appears only.
3. DIGITAL ELECTRONICS..
Engineering H192 - Computer Programming Gateway Engineering Education Coalition Lab 2P. 1Winter Quarter Digital Electronics Lab 2.
1 The Chinese University of Hong Kong Faculty of Education Diploma in Education (Part-Time) Winter 1997 Educational Communications and Technology Assignment.
Basic Digital Logic 2 Combinational Logic
Eng. Mohammed Timraz Electronics & Communication Engineer University of Palestine Faculty of Engineering and Urban planning Software Engineering Department.
Chapter 5 Boolean Algebra and Reduction Techniques 1.
Digital Logic Circuits. Overview  Objectives  Background  Materials  Procedure  Report / Presentation  Closing.
Laboratory 7: Sensors. Overview Objective Background Materials Procedure Report / Presentation Closing.
Digital Logic Circuits. Overview Objectives Background Materials Procedure Report/Presentation Closing.
LABORATORY11: Digital Logic Circuits
Laboratory 5: Introduction to LabVIEW
Introduction to LabVIEW
Introduction to LabVIEW. Overview Objectives Background Materials Procedure Report/Presentation Closing.
Circuit Synthesis A logic function can be represented in several different forms:  Truth table representation  Boolean equation  Circuit schematic 
EG1003: Introduction to Engineering and Design Introduction to LabVIEW.
LOGIC GATES. INTRODUCTION TO LOGIC GATES Boolean functions may be practically implemented by using electronic gates. The following points are important.
Digital Logic Circuits
Logic gates.
Digital Logic Circuits
EGR 2131 Unit 4 Combinational Circuits: Analysis & Design
Introduction to LabVIEW
Homework Reading Machine Projects Labs
Purpose of This Minilab
Computer Science 210 Computer Organization
Basic Digital Logic.
CSCI-100 Introduction to Computing
Chapter 2.3 Binary Logic.
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Principles & Applications
XOR, XNOR, and Binary Adders
EEL 3705 / 3705L Digital Logic Design
Digital Logic Circuits
Electronic Filters L.Mexhitaj 2009.
How Boolean logic is implemented
Computer Science 210 Computer Organization
Electronic Filters L.Mexhitaj 2009.
XOR, XNOR, & Binary Adders
Karnaugh Maps Topics covered in this presentation: Karnaugh Maps
Digital Electronics Lab 2 Instructor:
Introduction to LabVIEW
Digital Logic Circuits
Homework Reading Tokheim, Section 5-10, 7-4.
Introduction to LabVIEW
Design Example “Date of Birth Problem”
Digital Logic Circuits
KS4 Electricity – Electronic systems
EET 1131 Unit 3 Basic Logic Gates
ELECTRONIC SYSTEMS Note: There is no compulsory question set on Section 25 of the syllabus. Questions set on topics within Section 25 are always set as.
Combinational Logic - An Overview
Binary Logic.
Prototyping with Micro-controllers, Sensors, and Materials
Prototyping with Micro-controllers, Sensors, and Materials
Introduction to LabVIEW
XOR, XNOR, and Binary Adders
Prototyping with Micro-controllers, Sensors, and Materials
Introduction to LabVIEW
Prototyping with Micro-controllers, Sensors, and Materials
Combinational Logic - An Overview
Introduction to LabVIEW
Presentation transcript:

Digital Logic Circuits L.Mexhitaj 2009

Overview Objectives Background Materials Procedure Report / Presentation Closing

Objectives Understand logic gates and digital logic circuits Design combinational logic circuit Activate under specific conditions Test with LabVIEW Test using NI-ELVIS prototyping board

Logic Functions AND - “All or nothing operator” Output high (1) only when ALL inputs are high (1) OR gate - “Any or all operator” Output high (1) when at least ONE input is high (1) NOT operator – “Inverter” Output always opposite of input Only one input and one output

Logic Functions Logic Function Logic Symbol Boolean Expression Truth Table Inputs Output A B Y AND A • B = Y 1 OR A + B = Y NOT A = Ā -

Sample Problem ATM machine has three options: Print statement Withdraw money Deposit money ATM machine will charge $1.00 to: Withdraw Print out statement with no transactions No charge for: Deposits without withdrawal

Truth Table INPUTS OUTPUT P W D C 1 A truth table displays all possible input / output combinations. INPUT OUTPUT P = Print C = Charge W = Withdraw D = Deposit 0 = “do not” 0 = $0.00 1 = “do” 1 = $1.00 INPUTS OUTPUT P W D C 1

Boolean Equation C = + PWD + PWD + PWD + PWD PWD INPUTS OUTPUT P W D C Outputs with a value of “ONE” are kept INPUTS OUTPUT P W D C 1 C = PWD + PWD + PWD + PWD + PWD

Karnaugh Maps (K-maps) C = PWD+ PWD+ PWD + PWD + PWD PWD PWD PWD 1 1 1 1 P W P W P W P W D 1 1 1 1 D 1 1 _ Why can’t you switch PW and PW? Why can’t you loop the three adjacent 1s in the top row together?

Karnaugh Maps (K-maps) C = PWD+ PWD+ PWD + PWD + PWD W P D 1 NOTE:Circle neighboring ONES in powers of 2. Try to find the greatest amount of “neighbors.” Only overlap circles as a last resort!

Simplified Boolean Equation 1 _ _ PWD _ P W D Opposite values cancel out 1 1 _ PWD _ _ W C = _ + PD

Simplified Boolean Equation Opposite values in circles cancel out P W D _ _ PWD _ = W 3 Step 1 2 4 1 _ PWD _ _ = PD Step 1 C = W + PD

Combinational Logic Circuit W C = W P D + W P D + W P D + W P _ PD P D + P D _ D D

Integrated Circuits (ICs) Used for implementation of combinational logic circuits Use TTL family (transistor transistor logic)

IC Identification

Materials for Lab Computer equipped with LabVIEW NI-ELVIS II+ Prototyping Board DIP Switch Hook-up Wire

Problem Statement A farmer has 2 barns 3 items: fox, hen, corn Items can be in any barn, in any combination Concerns: Protect hen from fox Protect corn from hen Design alarm system using digital electronics. Alarm sounds when: Fox and hen are in same barn Hen and corn are in same barn

Problem Statement Design combination logic circuit for alarm system: Use least amount of gates and input variables (cost effectiveness) Logical circuit output connected to LED LED “on” indicates alarm activation LED “off” indicates no problem (alarm off) Fox, hen and corn must be in barn 1 or barn 2 Presence in barn 1 = 1 Presence in barn 2 = 0

Procedure Truth Table Determine input and output variable (s) How many combinations are there? Complete truth table on a sheet of paper Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Procedure Boolean Expression Gather all combinations that produce a 1 for output Create a Boolean expression from these smaller expressions (independent conditions) Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Procedure K-Map Create a K-Map table Only have one variable change state at a time between adjacent boxes Use the Boolean expression to fill in the 1’s Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Procedure Simplified Boolean Expression Use K-Map to circle groups of 1’s 1’s may only be circled in powers of 2, starting from largest possible combination and working downward Write new simplified expression Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Procedure Logic Circuit Diagram Use new simplified Boolean expression to design a logic circuit Have TA check/initial work Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Procedure LabVIEW Simulation Create logic circuit in LabVIEW based on theoretical work Front panel 3 control switches represent input variables 1 Boolean indicator shows output HINT: some LabVIEW comparison functions are: Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS NOT AND OR

Procedure NI-ELVIS Prototyping Board Do NOT electrically connect anything until TA has reviewed your work Connect +5V and ground to the DIP switch Use created logic circuit and IC chip diagram to wire actual circuit on the prototyping board Be sure to connect each of the ICs to “Ground” and “+5V” (circuit power) Connect final output to an LED. **VCC is an acronym: **Voltage at the Common Collector (+5V) Truth Table Boolean Expression K-Map Simplified Boolean Expression Logic Circuit LabVIEW Simulation NI-ELVIS

Assignment: Report Individual Report Title page Discussion topics in the manual Include original data with instructor’s initials Scan in data and lab notes (ask TA for assistance) Original tables and work should be legible Include screenshots of LabVIEW front and back panels

Assignment: Presentation Team presentation Professional-looking tables Include screen shots of your programs Photo of functioning LED assembly Explain steps taken to complete lab Be prepared to provide walk-through Include lab data Refer to “Creating PowerPoint Presentations” found in Online Manual

Closing Have all original data signed by TA Each team member should have turn using software Submit all work electronically Return all unused materials to TA