Introductory Lecture on Digital Electronics

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

CT455: Computer Organization Logic gate
Computer Science 210 Computer Organization Introduction to Logic Circuits.
Digital Electronics Lecture 2 Logic Gates. Lecture 2 outline Announcement:
Programming Logic Gate Functions in PLCs
Digital Electronics Dan Simon Cleveland State University ESC 120 Revised December 30, 2010.
EE 231 Digital Electronics Fall 01 week 1-slide 1 Digital Hardware Systems Digital Systems Digital vs. Analog Waveforms Analog: values vary over a broad.
10/22/2004EE 42 fall 2004 lecture 221 Lecture #22 Truth tables and gates This week: Circuits for digital devices.
Number Systems & Logic Gates Day 2. Octal Number System Base (Radix)8 Digits0, 1, 2, 3, 4, 5, 6, 7 e.g = =648 1 =88 0 =1 The digit.
GK-12 Student designed project (AP physics) Digital logic and Boolean algebra exercise. IC logic gates brought from Stevens were used in making simple.
3. DIGITAL ELECTRONICS..
Boolean math is the cornerstone of digital communications, whether you are talking computers, PLC, or Cisco Routers on the Internet. ©Emil Decker, 2009.
Engineering Lecture 3 Digital Electronics by Jaroslaw Karcz.
Engineering Lecture1: Logic Circuits & Concepts about basic Electrical Engineering Devices by Christin Sander.
Binary Numbers.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
CS 352 : Computer Organization and Design University of Wisconsin-Eau Claire Dan Ernst Elementary Digital Logic Apps O/S Arch  Arch Logic Digital Analog.
Chapter 2: Fundamentals of Digital Electronics Dr Mohamed Menacer Taibah University
Lecture 17: Digital Design Today’s topic –Intro to Boolean functions Reminders –HW 4 due Wednesday 10/8/2014 (extended) –HW 5 due Wednesday 10/15/2014.
TODAY YOU ARE LEARNING to explain why data is represented in computer systems in binary form 2. to understand and produce simple logic diagrams.
Fall 2012: FCM 708 Foundation I Lecture 2 Prof. Shamik Sengupta
What is an And Gate? It is a digital circuit that produce logical operations The logical operations are call Boolean logical Boolean operation consist.
 In studying digital integrated circuits, one must start with the simplest group of circuit, the SSIs or Small Scale Integrated Circuits. Since these.
Basic Logic Operations and Standard Logic Gates (Lecture #1) ECE 331 – Digital System Design.
Logic Gates Shashidhara H S Dept. of ISE MSRIT. Basic Logic Design and Boolean Algebra GATES = basic digital building blocks which correspond to and perform.
4. Electrons and electronics 4.5 Digital electronics.
BASIC LOGIC GATES. In studying digital in integrated circuits, one must start with the simples group of circuits, the SSIs or Small Scale Integrated Circuits.
Linear Algebra. Circuits The circuits in computers and other input devices have inputs, each of which is either a 0 or 1, the output is also 0s and 1s.
1 EG 32 Digital Electronics Thought for the day You learn from your mistakes..... So make as many as you can and you will eventually know everything.
CHAPTER-2 Fundamentals of Digital Logic. Digital Logic Digital electronic circuits are used to build computer hardware as well as other products (digital.
Logic Signals and Gates. Binary Code Digital logic hides the pitfalls of the analog world by mapping the infinite set of real values for a physical quantity.
1 Ethics of Computing MONT 113G, Spring 2012 Session 1 Digital Circuits, binary Numbers Course webpage:
Lecture 4 Introduction to Boolean Algebra. Binary Operators In the following descriptions, we will let A and B be Boolean variables and define a set of.
Logic Gates. A logic gate is an elementary building block of a digital circuit. Most logic gates have two inputs and one output. At any given moment,
Boolean Algebra Computer Architecture. Digital Representation Digital is an abstraction of analog voltage –Voltage is a continuous, physical unit Typically.
Basic Logic Operations and Standard Logic Gates [Lecture:1] Instructor: Sajib Roy Lecturer, ETE, ULAB ETE 204 – Digital Electronics.
ECE DIGITAL LOGIC LECTURE 5: BINARY LOGIC AND DIGITAL LOGIC GATES Assistant Prof. Fareena Saqib Florida Institute of Technology Fall 2016, 01/28/2016.
Basic Logic Gates By : Ashima Wadhwa Assistant Professor (giBS)
WORKING PRINCIPLE OF DIGITAL LOGIC
Lecture 21: Combinatorial Circuits II Discrete Mathematical Structures: Theory and Applications.
Logic gates.
Basics of Logic gates - Part 1
Digital Logic.
Lesson Objectives Aims You should be able to:
Morgan Kaufmann Publishers
Eng. Mai Z. Alyazji October, 2016
Circuits Logic in Hardware.
ECE 331 – Digital System Design
Digital Signals Digital Signals have two basic states:
Practice #Digital Logic Mr. Burleson
Digital Computer Electronics TTL
Computer Science 210 Computer Organization
SOLIDS AND SEMICONDUCTOR DEVICES - IV
Schematics 201 Lecture Topic: Electrical Symbols
Information Storage and Spintronics 02
For OCR GCSE Computing Unit 1 - Theory
Logic Gates.
Lecture 20: Combinatorial Circuits I
SOLIDS AND SEMICONDUCTOR DEVICES - IV
CS Chapter 3 (3A and ) – Part 2 of 5
AWIM Series Lawndale High School Experiment 6 Dec, 2017
Chapter 10.3 and 10.4: Combinatorial Circuits
Logic Gates.
Chapter 2 Gates.
Digital Circuits and Logic
SOLIDS AND SEMICONDUCTOR DEVICES - IV
Further binary, Logic diagrams and truth tables
What are Logic Gates?.
DIGITAL ELECTRONICS AND LOGIC GATES. ANALOG SIGNAL:- Analog signal is continuous time varying current or voltage signal.
Agenda Lecture Content: Combinatorial Circuits Boolean Algebras
Presentation transcript:

Introductory Lecture on Digital Electronics Electronics Club Introductory Lecture on Digital Electronics

Why Learn Digital ?? Is it because computers are digital or the world is going Digital ?? As Samsung says “The new realm of DigitAll Technology” One to One functions Virtually immune to noise Easy to rectify mistakes ( Why?? )

What is Digital Electronics?? A Digital circuit is based on a number of discrete voltage levels, as distinct from an analog circuit that uses continuous voltages to represent variables directly. In most cases the number of states is two, and these states are represented by two voltage levels: one near to zero volts and one at a higher level depending on the supply voltage in use. These 2 discrete states might be called “Low” and “High”, 1 or 0 , True or False. Simple intuitive Boolean algebra !!!!

Wanna See Noise Immunity !! Technology Low Level High Level Supply Voltage CMOS 0 to Vcc/2 Vcc/2 to Vcc Vcc = 5V TTL 0 to 0.8V 2V to Vcc

What is common to Digital Circuits?? Supply Voltage  5V (at the club ) A term called CLOCK Will you change Mr. Logical One Mr. Clock Says : Yes Sir !! Right away Mr. Logical One Responds:

In Electronics Terms A clock is simply a square wave , which is mostly common to all components put in a digital circuit. We may classify it as a parameter in measuring speed of the circuit. A Logical One 5V 0V A Logical Zero

The Binary Number System Representing Nos. as a sequence of 1’s and 0’s. Nos. in Base 2 Decimal to Binary Conversion Binary to Decimal Conversion Intuitivism here too!!!!

Logic Gates Simple Boolean functions AND OR NOT XOR NAND NOR

AND Gate Y = A & B Input 1(A) Input 2(B) Output (Y) Input 1 Input 2 1 Y = A & B

OR Gate Y = A | B Input 1 (A) Input 2 (B) Output (Y) Input 1 Input 2 1 Y = A | B

NOT Gate Input A Output Y Input Output 1 Y = ~A

XOR NOR NAND XNOR Gates A B A XOR B 1 A B ~(A&B) 1 A B A XNOR B 1 A B 1 A B ~(A&B) 1 A B A XNOR B 1 A B ~(A|B) 1

Dear Transistor Most simple use as a switch Supply Load Device Input

You did not understand something ??? Read the handout Even better come to the workshop Lets work One to One  Register for the workshop Finally Be there !!!!

Thank You