Logic Symbols.

Slides:



Advertisements
Similar presentations
Logic Gates.
Advertisements

CT455: Computer Organization Logic gate
Digital Electronics Lecture 2 Logic Gates. Lecture 2 outline Announcement:
1 The 2-to-4 decoder is a block which decodes the 2-bit binary inputs and produces four output All but one outputs are zero One output corresponding to.
Digital Circuits. Review – Getting the truth table The first step in designing a digital circuit usually is to get the truth table. That is, for every.
ECE 3110: Introduction to Digital Systems Chapter 6 Combinational Logic Design Practices XOR, Parity Circuits, Comparators.
1 Combinational Logic Design&Analysis. 2 Introduction We have learned all the prerequisite material: – Truth tables and Boolean expressions describe functions.
Exclusive-OR and Exclusive-NOR Gates
1 Homework Reading –Tokheim, Section 5-10, 7-4 Machine Projects –Continue on MP4 Labs –Continue labs with your assigned section.
Sequential Logic Design Process A sequential circuit that controls Boolean outputs and a specific time- ordered behavior is called a controller. StepDescription.
08/07/041 CSE-221 Digital Logic Design (DLD) Lecture-8:
Relationship Between Basic Operation of Boolean and Basic Logic Gate The basic construction of a logical circuit is gates Gate is an electronic circuit.
SYEN 3330 Digital SystemsJung H. Kim Chapter SYEN 3330 Digital Systems Chapter 2 – Part 1.
Design Of Combinational Logic Circuits
In a not gate, if the input is on(1) the output is off (0) and vice versa.
Digital Logic Lecture 08 By Amr Al-Awamry. Combinational Logic 1 A combinational circuit consists of an interconnection of logic gates. Combinational.
Module 3.  Binary logic consists of :  logic variables  designated by alphabet letters, e.g. A, B, C… x, y, z, etc.  have ONLY 2 possible values:
XOR and XNOR Logic Gates. XOR Function Output Y is TRUE if input A OR input B are TRUE Exclusively, else it is FALSE. Logic Symbol  Description  Truth.
Logic gates & Boolean Algebra. Introduction Certain components (called logic elements) of the computer combine electric pulses using a set of rules. Electric.
Introduction to Digital Logic and Circuits EE 101, Fall 2015 University of Kentucky.
Digital Logic Design Week 3
Basic Logic Operations and Standard Logic Gates (Lecture #1) ECE 331 – Digital System Design.
4. Electrons and electronics 4.5 Digital electronics.
Sneha.  Gates Gates  Characteristics of gates Characteristics of gates  Basic Gates Basic Gates  AND Gate AND Gate  OR gate OR gate  NOT gate NOT.
Combination of logic gates  Logic gates can be combined to produce more complex functions.  They can also be combined to substitute one type of gate.
Lesson 1.4. and ornot Logic Gate: A device that acts on input signals that it receives to produce an output signal (1 or 0). True = 1 False = 0.
Basic Gates 3.1 Basic Digital Logic: NAND and NOR Gates ©Paul Godin Created September 2007 Last Update Sept 2009.
1 CS 151: Digital Design Chapter 3: Combinational Logic Design 3-1Design Procedure CS 151: Digital Design.
Basic Logic Operations and Standard Logic Gates [Lecture:1] Instructor: Sajib Roy Lecturer, ETE, ULAB ETE 204 – Digital Electronics.
AND Gate Inputs Output Input A (Switch) Input B (Switch) Output Y (Lamp) 0 (Open) 0 (OFF) A B Lamp.
Digital logic representation In digital logic system,events are described as either 0 or 1 Two logic states 1= logic High 0 = logic Low.
1’S COMPLEMENT REPRESENTATION 1’s complement of a number (binary) is obtained by changing all 1’s to 0 and all 0’s to 1. If one of these numbers is positive.
US Demonstrate knowledge of the practical applications of logic circuits.
Decoders A decoder is a logic circuit that detects the presence of a specific combination of bits at its input. Two simple decoders that detect the presence.
Logic Gates Review. Logic Gates OR gate – 1 if either input is 1 – 0 if they both are 0.
Instructor: Oluwayomi Adamo Digital Systems Design.
Chapter 3 Digital circuits. 3.1 Logic signals - Gates Binary system : (binary bits or digits) - 0 & 1 - LOW & HIGH - Negated and Asserted.
Logic Gates.
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
Introduction Molecules: made up of atoms of individual elements.
Lab02 :Logic Gate Fundamentals:
ECE 331 – Digital System Design
Logic Gates.
Logic Gates Benchmark Companies Inc PO Box Aurora CO
Chapter 2.3 Binary Logic.
Reference: Chapter 3 Moris Mano 4th Edition
KS4 Electricity – Electronic systems
KS4 Electricity – Electronic systems
Digital Signals Digital Signals have two basic states:
Basic Digital Logic Basic Gates
Thursday, 22 November 2018 Logic Gates
Logic Gates Practical Objective: to develop an understanding of logic circuits and truth tables.
3.4 Computer systems Boolean logic Lesson 2.
For OCR GCSE Computing Unit 1 - Theory
JC Technology Logic Gates.
Logic Gates.
Homework Reading Tokheim, Section 5-10, 7-4.
Logic Gates.
Design Example “Date of Birth Problem”
KS4 Electricity – Electronic systems
Binary Logic.
Table 1.1 Powers of Two.
Objectives Construct truth tables for the following logic gates:
XOR Function Logic Symbol  Description  Truth Table 
Truth tables Mrs. Palmer.
Digital Circuits.
Logically, the output will be 1
What are Logic Gates?.
DIGITAL ELECTRONICS AND LOGIC GATES. ANALOG SIGNAL:- Analog signal is continuous time varying current or voltage signal.
SYEN 3330 Digital Systems Chapter 2 – Part 1 SYEN 3330 Digital Systems.
Presentation transcript:

Logic Symbols

Analog and Digital In a Crestron World For Crestron programming purposes Digital is single digit Binary (1/0, On/Off) Analog is 16 bit Binary, Decimal or Hex

Digital Decisions Digital decisions are made by logic “elements” or “gates” A logic element will have it’s output state determined by the state of it’s inputs The most basic gates are: AND OR NOT

OR + This gate may have 2 or more inputs A + B B This gate may have 2 or more inputs The output is “true” when any input is true The + sign represents OR A + B means A or B

AND . This gate may have 2 or more inputs A . B B This gate may have 2 or more inputs The output is “true” when ALL inputs are true The . sign represents AND A . B means A AND B

______ NOT This gate has only 1 input This is sometimes called an INVERTER The output is true when the input is not true ___ The represents NOT _ A means NOT A

Truth Tables Truth Tables are useful in determining the action of a logic symbol A truth table shows all combinations of inputs and the corresponding output for each.

AND Truth Table Input A B Output A AND B 1

OR Truth Table Input A B Output A OR B 1

NOT Truth Table A _ 1

Make your own Truth Table or Logic Statement Given a scenario, if you can create a truth table or a “logic statement”, it will help to create the program logic. Example: You want the DVD power on to work only before 11:00 at night so the kids don’t stay up late. You also want the DVD power button to be smart, meaning not to power off if you mean to leave it on.

Assumptions You have a signal from the built in clock that tells you it is after 11:00 (ELEVEN) You have a signal from i/o port 1 that tells you the DVD Power is On (DVD_ON) The touchpanel signal from press-join 10 is called DVDPOWERON

Start a statement You need to send out the power signal to the DVD player when it is before 11:00 and someone pushes the DVD power on button and the DVD player is off. Make the statement more of an equation DVDPOWER = DVDPOWERON and NOT DVD_ON and NOT ELEVEN

Truth Table DVDPOWER = DVDPOWERON and NOT DVD_ON and NOT ELEVEN 1

Truth Table DVDPOWER = DVDPOWERON and NOT DVD_ON and NOT ELEVEN 1

Draw the Logic From statement or truth table or both, develop the logic diagram DVDPOWERON AND ELEVEN NOT DVDPOWER DVDON NOT

Program the logic

Use a Truth Table Symbol Crestron has a truth table symbol It may be easier than building your own logic You still have to understand the logic to make the truth table correct