EECS 270: Lab 7. Real-World Interfacing with an Ultrasonic Sensor and a Servo

Size: px
Start display at page:

Download "EECS 270: Lab 7. Real-World Interfacing with an Ultrasonic Sensor and a Servo"

Transcription

1 EECS 270: Lab 7 Real-World Interfacing with an Ultrasonic Sensor and a Servo 1. Overview The purpose of this lab is to learn how to design, develop, and implement a sequential digital circuit whose purpose is to interface with actual hardware devices. Your lab is broken into three tasks: In the first task, you will work with an ultrasonic distance sensor, using it to determine how far away an object is from the sensor and displaying that distance using the 7-segment displays. Wikipedia has a decent article on ultrasonic sensors in general 1. There is also a student-written slide show you might find helpful 2 in understanding how the sensors work. In the second task, you will work with a servo a fairly easy-to-use motor which can easily be turned to a specific angle. You will make it so pressing a button will turn the motor 5 degrees in one direction or another. There are some fairly good on-line resources for using a servo 3,4 and we suggest you look them over. For the last task, you will combine the servo and distance sensor, making a device that sweeps the area in front of it, looking for the nearest object. All of your code for this lab is to be done in Verilog. The lab with worth a total of 165 points. In addition, you can earn up to 15 points of extra credit. Preparation Before you begin the lab, we strongly recommend you read about servos and distance sensors. We ve provided a brief tutorial as part of this document, but reading the references mentioned above would be wise. Read the entire lab, including the in-lab, before starting the pre-lab Sensor Presentation.pdf

2 Ultrasonic Sensor The ultrasonic distance sensor we will be using is the LV-MaxSonar-EZ1 5. It measures distance to the detected object by sending out an ultrasonic pulse and measuring how long it takes to see the pulse reflected back. It provides range information from 6 inches out to 254 inches with 1 inch resolution. The sensor will indicate that an object from 0 to 6 inches away is 6 inches away. This particular sensor has a number of ways that one could talk to it. We will be using the pulse width interface, though it also supports a serial interface and an analog interface. Every 49ms the device will output a pulse. The length of time the signal is high (the pulse width) indicates how far away the detected object is. The pulse will be high for 147μs for every inch the detected object is from the sensor. So if the pulse duration were 1.47ms, the sensor would be indicating the nearest object is 10 inches away. The datasheet (referenced above or easily found with a web search) provides some additional information (though it can be a challenge to read). Figure 1 provides a graphical view of this. Period: 49ms Pulse width Figure 1: Pulse width output Dealing with asynchronous inputs External inputs are not generally synchronized to our local clock and thus might be changing near the rising edge of the clock. This could violate set-up or hold time constraints and cause the output to be metastable 6, potentially leading to system failure. Figure 2 below shows a recommended synchronizer. It consists of two flip-flops. The data coming out of the second flip-flop will be synchronized to the local clock 7. Asynchronous data D Q D Q Synchronized data Clock Figure 2: Synchronizer From Wikipedia: In metastable states, the circuit may be unable to settle into a stable '0' or '1' logic level within the time required for proper circuit operation. As a result, the circuit can act in unpredictable ways, and may lead to a system failure 7 See for a fairly detailed overview on clock synchronization, including an analysis of mean time between failures.

3 Servo A servo is a motor that allows for precise control of angular position. Servos are controlled by sending them a pulse of variable width at a fixed frequency. The servo we will be using is the EMAX ES08ma 8. This servo requires that the pulse have a minimum pulse width of 0.6 ms, a maximum pulse width of 2.4ms, and a period of 20ms. If the pulse width you send to the servo is out of range, the servo will not work properly. Period: 20 ms Pulse Width: 0.6 ms 2.4 ms Minimum Pulse Width Pulse Width: 0.6 ms 0 deg Pulse Width: 1.5 ms 90 deg Maximum Pulse Width Pulse Width: 2.4 ms 180 deg Figure 3: Pulse width and motor s position. As seen in Figure 3, the angle the servo turns to is determined by the pulse width that is applied. The servo expects to see a pulse every 20ms (50Hz). The pulse width will determine the position of the motor. For example, a 1.5ms pulse will make the motor turn to the 90 degree position. The servo would hold this position if the same pulse width is supplied every 20ms. 8

4 2. Pre-Lab [55 points] 1) The servo operates at 50Hz while the DE2 board has an internal clock that runs at 50MHz. What is the period of the 50 MHz system clock? The 50 Hz servo? [3 points] 2) Say you wanted to design a circuit that had a 50MHz clock as an input and it was to generate a glitch-free output that had a frequency of 50Hz and was high for 1.5ms and low the rest of the time. Figure 4 is a start at implementing such a circuit. [12 points] a) In your own words, explain what this design is doing. Describe in terms of X and Y. [3] b) What is the value of X you would need? [2] c) What is the value of Y you would need? [2] d) How many bits would the counter need? [2] e) What role is the D flip-flop playing? [3] Reset N-bit up counter Clock Q < X? ==Y? D D flip-flop Q Clock Periodic Pulse Input Clock Figure 4: Pulse generation circuit 3) Write a Verilog module that implements the circuit in Figure 4 with the values for N, Y, and X you computed in the above question. The only input should be the input clock (clk) and the only output should be the periodic pulse (pulse). Provide a timing simulation waveform showing the pulse you generate. (You will need to create a 50MHz clock for the stimulus. An example test bench showing you how to do these is posted with the lab) [20 points] 4) Consider the following Verilog code 9 where A is the input and Ar[1] is the output: [7 points] reg [1:0] Ar; clk) Ar <= {Ar[0], A}; a) What does that code implement? Draw a figure using registers. Clearly label A, Ar[0], and Ar[1] in your figure. [5] b) Why might this code be useful in this lab? (In other words, how does it relate to anything you ll need to do in this lab?) You may need to read the in-lab section to answer this question. [2] 5) If the ultrasonic distance sensor detected an object that was 21 inches away: [4 points] a) For how long would the pulse be high? [2] b) For how many 50MHz clock ticks would the pulse be high? [2] 9 The {} operator is concatenate. So {1 b1, 2 b00, 1 b1, 3 b010} is the same as 7 b

5 6) Draw a circuit which has two inputs: a clock (clk) and a one bit input (A). Your circuit is to generate an output (X) of 1 if and only if A was a 1 on the last clock edge and is a 0 on the current clock edge. Hint: this can be done with 1 two-input gate, a D flip-flop and an inverter. [5 points] 7) Complete the binary to hexadecimal 7-segment display Verilog code below. [4 points] module SevenSegmentDisplayDecoder(in, ssout); input [3:0] in; output reg [6:0] ssout; case (in) 4'h0: ssout = 7'b ; 4'h1: ssout = 4'h2: ssout = ; 4'h3: ssout = ; 4'h4: ssout = ; 4'h5: ssout = 7'b ; 4'h6: ssout = ; 4'h7: ssout = 7'b ; 4'h8: ssout = ; 4'h9: ssout = 7'b ; 4'hA: ssout = ; 4'hB: ssout = 7'b ; 4'hC: ssout = 7'b ; 4'hD: ssout = 7'b ; 4'hE: ssout = ; 4'hF: ssout = ; endcase endmodule

6 3. In-lab As mentioned in the overview, this lab has three different tasks: implementing the interface to the ultrasonic sensor, implementing the interface to the servo motor, and implementing a closest object detector. The lab is broken into two parts Part 1 and Part 2. As far as ground rules go you may use any part of Verilog you wish other than multiplication (*), division (/) and mod (%). You are to do your entire design in Verilog (no schematic capture). Part 1 Sensor and Servo For this part you will turn in the first two tasks: implementing the interface to the ultrasonic sensor and implementing the interface to the servo motor. Connecting the devices to the board and debugging The ultrasonic distance sensor and servo are conveniently mounted on a custom PCB board that plugs into the 40 pin GPIO header on the DE2. There are keys (slots) on the mating connectors to insure they are properly aligned. You should not have to remove or install these. If you do, you should ask your instructor for assistance to avoid damage to the connector pins. You should something like this on your kit if it is properly installed. Figure 5: Picture of the board connected to the servo and distance sensor

7 FPGA Connections The servo pulse and sensor signal are attached to the following FPGA pins 50MHz clock FPGA PIN_Y2 Servo Pulse FPGA PIN_Y17 Sensor Signal FPGA PIN_AC15 You might find it helpful to observer the servo pulse you are generating or confirm and observer the ultrasonic sensor pulse. There are test points on the interface board to provide easy connection to these signal with an oscilloscope. Ask the instructor for help setting one up if you want to give it a try

8 Ultrasonic distance sensor [35 points] For this task, you are to display the range of the detected object on the DE2 board using two sevensegment displays. You are to display the distance in hexadecimal. Hints/design issues: Keep in mind that the signal coming from the ultrasonic sensor is not synchronized to your FPGA s clock. You ll need to fix that. The 50Mhz system clock found is found on pin PIN_Y2. You will want to use a counter and a register. The counter to count how long the pulse is high, while the register grabs that value once the pulse has gone low. The register s value is what you ll display on the 7-segment display. Consider avoiding using magic constants and instead use defines throughout your code. This can prevent a number of rather silly but hard-to-find errors. You will be well served to sketch out a design before you start coding. The sensor logic is very difficult to debug on the kit. Use the sensor test bench posted with the lab to debug you design. Be sure to use timing simulation for accurate simulation. You will probably want to add other outputs from your design to the test bench to monitor and debug your design. Demo 1 Ultrasonic Distance Sensor Demonstrate the function of your ultrasonic distance sensor to a 270 instructor. Servo motor [35 points] Design a controller for the servo. This controller is to use three of the buttons to implement reset (Key 3), increment (Key 2), and decrement (Key 1). When reset is pressed, regardless of other buttons, the motor will return to initial position--0 degrees. Otherwise, each time the increment button is pressed the motor is to turn 5 degrees clockwise. And each time the decrement button is pressed, the motor is to turn 5 degrees counterclockwise. Note that the motor can only operate within 180 degrees, so any button press that would cause the angle to be above 180 degrees or below 0 degrees should be ignored. Hints/design issues: The buttons are not synchronized to your FPGA s clock. You ll need to fix that. Keep in mind that a single button press will cause the button s state to change for more than just one clock tick. You are going to need some way to detect that the button has gone from a not-pressed state to a pressed state. You did something like this in the pre-lab. There is a really nice way to combine your solution to the above two issues into a single, very short, module. Consider avoiding using magic constants and instead use defines throughout your code. This can prevent a number of rather silly but hard-to-find errors.

9 Use one of the pushbutton or slide switches to provide a system reset to initialize your system like the starting PWM pulse width. You will be well served to sketch out a design before you start coding. Like the sensor logic, this logic can be very difficult to debug on the kit. A test bench is provided that provides a 50MHz clock, reset, KEY0 and KEY1 press. Add more outputs as necessary to debug your design. Be sure to use the timing mode simulation. Demo 2 Servo Motor Demonstrate the function of your servo motor to a 270 instructor. Part 2 Closest Object Scanner [30 points] For this task, you will combine the servo and ultrasonic sensor to make a device which finds the distance to the nearest object. The sensor will be mounted on the servo and you will use this combined device to scan the area in front of the combined device. When the enable (DIP switch 17) is high, the servo is to automatically scan from 0 to 180 degrees and back (180 to 0 degrees) continuously and is to report the closest object it has seen thus far on two seven segment displays. When reset is high (no matter the value of enable) the detector shall return to 0 degrees. Once reset is low and enable is high, a new search is to be started. Hints/design issues: The servo s operating speed at 4.8V is 0.19sec/60 with no load. The speed in lab might be a bit lower due to the mounted sensor. Please do not exceed 0.03sec/5 for this design. Spend some time thinking about how you will need to change and combine your designs from part 1 before starting on this part. Demo 3 Object Scanner Demonstrate the function of your object scanner to a 270 instructor. Extra credit [up to 15 points] You may do any of the following, but cannot earn more than 15 extra credit points. You will not get any extra credit points if you haven t finished parts 1 and 2. Further, no extra credit can be earned after part 2 is due. The points earned here are quite small compared to the amount of work involved. Sonar display: For this task, you will break up the 180 degree sweep of the combined device from part 2 into 8 equally sized arcs. Rather than displaying the closest object s distance, you are to use the eight seven-segment displays to indicate how close an Figure 6: The left-most segment indicates the object is far, the middle that it is at a medium distance and the rightmost that the object is close.

10 object is in each of those 8 arcs. You will use the display to indicate if objects are close (<8 inches), far (>20 inches) or at a medium distance as shown in Figure 6, with each 7-segment display representing a different section of the 180 degree sweep. Only the object detected as closest in the most recent sweep of that section should be displayed. [10 points] Follow-me: Your combined device should do a single sweep of the 180 degrees, find the closest object and then return to pointing at that object. After that initial set up, you design should follow that object if it moves slowly enough. You ll want to keep twitching the device to the left and right to track an edge of that object. [10 points] Demo 4 Extra Credit Demonstrate your extra credit to 270 instructor. The instructor will evaluate your demo. 4. Post-lab [10 points] Turn in all Verilog code written for this lab.

EECS150 Spring 2007 Lab Lecture #5. Shah Bawany. 2/16/2007 EECS150 Lab Lecture #5 1

EECS150 Spring 2007 Lab Lecture #5. Shah Bawany. 2/16/2007 EECS150 Lab Lecture #5 1 Logic Analyzers EECS150 Spring 2007 Lab Lecture #5 Shah Bawany 2/16/2007 EECS150 Lab Lecture #5 1 Today Lab #3 Solution Synplify Warnings Debugging Hardware Administrative Info Logic Analyzer ChipScope

More information

PWM System. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff

PWM System. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff PWM System 1 Pulse Width Modulation (PWM) Pulses are continuously generated which have different widths but the same period between leading edges Duty cycle (% high) controls the average analog voltage

More information

I hope you have completed Part 2 of the Experiment and is ready for Part 3.

I hope you have completed Part 2 of the Experiment and is ready for Part 3. I hope you have completed Part 2 of the Experiment and is ready for Part 3. In part 3, you are going to use the FPGA to interface with the external world through a DAC and a ADC on the add-on card. You

More information

Lab 6. Binary Counter

Lab 6. Binary Counter Lab 6. Binary Counter Overview of this Session In this laboratory, you will learn: Continue to use the scope to characterize frequencies How to count in binary How to use an MC14161 or CD40161BE counter

More information

Additional Programs for the Electronics Module Part No

Additional Programs for the Electronics Module Part No Additional Programs for the Electronics Module Part No. 5263 Contents:. Additional programs for the Electronics Module....2 Wiring of the inputs and outputs... 2.3 Additional programs for digital technology...

More information

Digital Debug With Oscilloscopes Lab Experiment

Digital Debug With Oscilloscopes Lab Experiment Digital Debug With Oscilloscopes A collection of lab exercises to introduce you to digital debugging techniques with a digital oscilloscope. Revision 1.0 Page 1 of 23 Revision 1.0 Page 2 of 23 Copyright

More information

Hardware Flags. and the RTI system. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff

Hardware Flags. and the RTI system. Microcomputer Architecture and Interfacing Colorado School of Mines Professor William Hoff Hardware Flags and the RTI system 1 Need for hardware flag Often a microcontroller needs to test whether some event has occurred, and then take an action For example A sensor outputs a pulse when a model

More information

EE 314 Spring 2003 Microprocessor Systems

EE 314 Spring 2003 Microprocessor Systems EE 314 Spring 2003 Microprocessor Systems Laboratory Project #9 Closed Loop Control Overview and Introduction This project will bring together several pieces of software and draw on knowledge gained in

More information

Model 305 Synchronous Countdown System

Model 305 Synchronous Countdown System Model 305 Synchronous Countdown System Introduction: The Model 305 pre-settable countdown electronics is a high-speed synchronous divider that generates an electronic trigger pulse, locked in time with

More information

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones

CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones CprE 288 Introduction to Embedded Systems (Output Compare and PWM) Instructors: Dr. Phillip Jones 1 Announcements HW8: Due Sunday 10/29 (midnight) Exam 2: In class Thursday 11/9 This object detection lab

More information

Introduction to project hardware

Introduction to project hardware ECE2883 HP: Lab 2- nonsme Introduction to project hardware Using the oscilloscope, solenoids, audio transducers, motors In the following exercises, you will use some of the project hardware devices, which

More information

Lab 5. Binary Counter

Lab 5. Binary Counter Lab. Binary Counter Overview of this Session In this laboratory, you will learn: Continue to use the scope to characterize frequencies How to count in binary How to use an MC counter Introduction The TA

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2018-08-22 03:36:11 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

READ THIS FIRST: *One physical piece of 8.5x11 paper (you may use both sides). Notes must be handwritten.

READ THIS FIRST: *One physical piece of 8.5x11 paper (you may use both sides). Notes must be handwritten. READ THIS FIRST: We recommend first trying this assignment in a single sitting. The midterm exam time period is 80 minutes long. Find a quiet place, grab your cheat sheet* and a pencil, and set a timer.

More information

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT & Bonnet for Raspberry Pi Created by lady ada Last updated on 2018-03-21 09:56:10 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR

More information

Sequential Logic Circuits

Sequential Logic Circuits Exercise 2 Sequential Logic Circuits 1 - Introduction Goal of the exercise The goals of this exercise are: - verify the behavior of simple sequential logic circuits; - measure the dynamic parameters of

More information

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi

Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Adafruit 16-Channel PWM/Servo HAT for Raspberry Pi Created by lady ada Last updated on 2017-05-19 08:55:07 PM UTC Guide Contents Guide Contents Overview Powering Servos Powering Servos / PWM OR Current

More information

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232

PIC Functionality. General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 PIC Functionality General I/O Dedicated Interrupt Change State Interrupt Input Capture Output Compare PWM ADC RS232 General I/O Logic Output light LEDs Trigger solenoids Transfer data Logic Input Monitor

More information

Laser Writer. Final Project Report December 8, 2000 Engineering 155, Micro Processor design. Jerod Meacham Bryce Nichols.

Laser Writer. Final Project Report December 8, 2000 Engineering 155, Micro Processor design. Jerod Meacham Bryce Nichols. Laser Writer Final Project Report December 8, 2000 Engineering 155, Micro Processor design Jerod Meacham Bryce Nichols Abstract: The Laser Writer system uses a single laser beam to project letters onto

More information

UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering. EEC 180A DIGITAL SYSTEMS I Winter 2015

UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering. EEC 180A DIGITAL SYSTEMS I Winter 2015 UNIVERSITY OF CALIFORNIA, DAVIS Department of Electrical and Computer Engineering EEC 180A DIGITAL SYSTEMS I Winter 2015 LAB 2: INTRODUCTION TO LAB INSTRUMENTS The purpose of this lab is to introduce the

More information

Intro to Engineering II for ECE: Lab 3 Controlling Servo Motors Erin Webster and Dr. Jay Weitzen, c 2012 All rights reserved

Intro to Engineering II for ECE: Lab 3 Controlling Servo Motors Erin Webster and Dr. Jay Weitzen, c 2012 All rights reserved Lab 3: Controlling Servo Motors Laboratory Objectives: 1) To program the basic stamp to control the motion of a servo 2) To observe the control waveforms as the motion of the servo changes 3) To learn

More information

HOMANN DESIGNS. DigiSpeed. Instruction manual. Version 1.0. Copyright 2004 Homann Designs.

HOMANN DESIGNS. DigiSpeed. Instruction manual. Version 1.0. Copyright 2004 Homann Designs. HOMANN DESIGNS DigiSpeed Instruction manual Version 1.0 Copyright 2004 Homann Designs http://www.homanndesigns.com Table of Contents Introduction...3 Features...3 DigiSpeed Operation Description...5 Overview...5

More information

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter

EE283 Electrical Measurement Laboratory Laboratory Exercise #7: Digital Counter EE283 Electrical Measurement Laboratory Laboratory Exercise #7: al Counter Objectives: 1. To familiarize students with sequential digital circuits. 2. To show how digital devices can be used for measurement

More information

DASL 120 Introduction to Microcontrollers

DASL 120 Introduction to Microcontrollers DASL 120 Introduction to Microcontrollers Lecture 2 Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to 8-bit Microcontrollers Introduction to Atmel Atmega328

More information

Module -18 Flip flops

Module -18 Flip flops 1 Module -18 Flip flops 1. Introduction 2. Comparison of latches and flip flops. 3. Clock the trigger signal 4. Flip flops 4.1. Level triggered flip flops SR, D and JK flip flops 4.2. Edge triggered flip

More information

Grundlagen Microcontroller Counter/Timer. Günther Gridling Bettina Weiss

Grundlagen Microcontroller Counter/Timer. Günther Gridling Bettina Weiss Grundlagen Microcontroller Counter/Timer Günther Gridling Bettina Weiss 1 Counter/Timer Lecture Overview Counter Timer Prescaler Input Capture Output Compare PWM 2 important feature of microcontroller

More information

Digital Logic Troubleshooting

Digital Logic Troubleshooting Digital Logic Troubleshooting Troubleshooting Basic Equipment Circuit diagram Data book (for IC pin outs) Logic probe Voltmeter Oscilloscope Advanced Logic analyzer 1 Basic ideas Troubleshooting is systemic

More information

Experiment 5: Basic Digital Logic Circuits

Experiment 5: Basic Digital Logic Circuits ELEC 2010 Laboratory Manual Experiment 5 In-Lab Procedure Page 1 of 5 Experiment 5: Basic Digital Logic Circuits In-Lab Procedure and Report (30 points) Before starting the procedure, record the table

More information

MiniProg Users Guide and Example Projects

MiniProg Users Guide and Example Projects MiniProg Users Guide and Example Projects Cypress MicroSystems, Inc. 2700 162 nd Street SW, Building D Lynnwood, WA 98037 Phone: 800.669.0557 Fax: 425.787.4641 1 TABLE OF CONTENTS Introduction to MiniProg...

More information

Blind Spot Monitor Vehicle Blind Spot Monitor

Blind Spot Monitor Vehicle Blind Spot Monitor Blind Spot Monitor Vehicle Blind Spot Monitor List of Authors (Tim Salanta, Tejas Sevak, Brent Stelzer, Shaun Tobiczyk) Electrical and Computer Engineering Department School of Engineering and Computer

More information

Chemistry Hour Exam 1

Chemistry Hour Exam 1 Chemistry 838 - Hour Exam 1 Fall 23 Department of Chemistry Michigan State University East Lansing, MI 48824 Name Student Number Question Points Score 1 15 2 15 3 15 4 15 5 15 6 15 7 15 8 15 9 15 Total

More information

Digital Electronics Course Objectives

Digital Electronics Course Objectives Digital Electronics Course Objectives In this course, we learning is reported using Standards Referenced Reporting (SRR). SRR seeks to provide students with grades that are consistent, are accurate, and

More information

Adafruit 16-channel PWM/Servo Shield

Adafruit 16-channel PWM/Servo Shield Adafruit 16-channel PWM/Servo Shield Created by lady ada Last updated on 2017-06-29 07:25:45 PM UTC Guide Contents Guide Contents Overview Assembly Shield Connections Pins Used Connecting other I2C devices

More information

1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e.

1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e. Name: Multiple Choice 1.) If a 3 input NOR gate has eight input possibilities, how many of those possibilities result in a HIGH output? (a.) 1 (b.) 2 (c.) 3 (d.) 7 (e.) 8 2.) The output of an OR gate with

More information

DM74ALS169B Synchronous Four-Bit Up/Down Counters

DM74ALS169B Synchronous Four-Bit Up/Down Counters Synchronous Four-Bit Up/Down Counters General Description These synchronous presettable counters feature an internal carry look ahead for cascading in high speed counting applications. The DM74ALS169B

More information

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) ELECTRICAL & ELECTRONICS ENGINEERING SEMESTER TWO EXAMINATION 2017/2018

UNIVERSITY OF BOLTON SCHOOL OF ENGINEERING BENG (HONS) ELECTRICAL & ELECTRONICS ENGINEERING SEMESTER TWO EXAMINATION 2017/2018 UNIVERSITY OF BOLTON [EES04] SCHOOL OF ENGINEERING BENG (HONS) ELECTRICAL & ELECTRONICS ENGINEERING SEMESTER TWO EXAMINATION 2017/2018 INTERMEDIATE DIGITAL ELECTRONICS AND COMMUNICATIONS MODULE NO: EEE5002

More information

ENGG1015: lab 3. Sequential Logic

ENGG1015: lab 3. Sequential Logic ENGG1015: lab 3 Sequential Logic 1 st Semester 2012-13 This lab explores the world of sequential logic design. By the end of this lab, you will have implemented a working prototype of a Ball ounter that

More information

Adafruit 16-Channel Servo Driver with Arduino

Adafruit 16-Channel Servo Driver with Arduino Adafruit 16-Channel Servo Driver with Arduino Created by Bill Earl Last updated on 2015-09-29 06:19:37 PM EDT Guide Contents Guide Contents Overview Assembly Install the Servo Headers Solder all pins Add

More information

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University

ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University ECEN 449: Microprocessor System Design Department of Electrical and Computer Engineering Texas A&M University Prof. Sunil P Khatri (Lab exercise created and tested by Ramu Endluri, He Zhou, Andrew Douglass

More information

Spec. Instructor: Center

Spec. Instructor: Center PDHonline Course E379 (5 PDH) Digital Logic Circuits Volume III Spec ial Logic Circuits Instructor: Lee Layton, P.E 2012 PDH Online PDH Center 5272 Meadow Estatess Drive Fairfax, VA 22030-6658 Phone &

More information

PHYSICS 536 Experiment 14: Basic Logic Circuits

PHYSICS 536 Experiment 14: Basic Logic Circuits PHYSICS 5 Experiment 4: Basic Logic Circuits Several T 2 L ICs will be used to illustrate basic logic functions. Their pin connections are shown in the following sketch, which is a top view. 4 2 9 8 +5V

More information

ENGR 210 Lab 12: Analog to Digital Conversion

ENGR 210 Lab 12: Analog to Digital Conversion ENGR 210 Lab 12: Analog to Digital Conversion In this lab you will investigate the operation and quantization effects of an A/D and D/A converter. A. BACKGROUND 1. LED Displays We have been using LEDs

More information

Industrial Automation Training Academy. Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours)

Industrial Automation Training Academy. Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours) nfi Industrial Automation Training Academy Presents Arduino, LabVIEW & PLC Training Programs Duration: 6 Months (180 ~ 240 Hours) For: Electronics & Communication Engineering Electrical Engineering Instrumentation

More information

Digital Applications of the Operational Amplifier

Digital Applications of the Operational Amplifier Lab Procedure 1. Objective This project will show the versatile operation of an operational amplifier in a voltage comparator (Schmitt Trigger) circuit and a sample and hold circuit. 2. Components Qty

More information

Configuring CorePWM Using RTL Blocks

Configuring CorePWM Using RTL Blocks Application Note AC284 Introduction This application note describes the configuration of CorePWM using custom RTL blocks. A design example is provided to illustrate how a simple finite state machine (FSM)

More information

PWM LED Color Control

PWM LED Color Control 1 PWM LED Color Control Through the use temperature sensors, accelerometers, and switches to finely control colors. Daniyah Alaswad, Joshua Creech, Gurashish Grewal, & Yang Lu Electrical and Computer Engineering

More information

Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery

Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery Instructional Demos, In-Class Projects, & Hands-On Homework: Active Learning for Electrical Engineering using the Analog Discovery by Dr. Gregory J. Mazzaro Dr. Ronald J. Hayne THE CITADEL, THE MILITARY

More information

ENGR-4300 Fall 2006 Project 3 Project 3 Build a 555-Timer

ENGR-4300 Fall 2006 Project 3 Project 3 Build a 555-Timer ENGR-43 Fall 26 Project 3 Project 3 Build a 555-Timer For this project, each team, (do this as team of 4,) will simulate and build an astable multivibrator. However, instead of using the 555 timer chip,

More information

EE 308 Lab Spring 2009

EE 308 Lab Spring 2009 9S12 Subsystems: Pulse Width Modulation, A/D Converter, and Synchronous Serial Interface In this sequence of three labs you will learn to use three of the MC9S12's hardware subsystems. WEEK 1 Pulse Width

More information

OBJECTIVE The purpose of this exercise is to design and build a pulse generator.

OBJECTIVE The purpose of this exercise is to design and build a pulse generator. ELEC 4 Experiment 8 Pulse Generators OBJECTIVE The purpose of this exercise is to design and build a pulse generator. EQUIPMENT AND PARTS REQUIRED Protoboard LM555 Timer, AR resistors, rated 5%, /4 W,

More information

INF3430 Clock and Synchronization

INF3430 Clock and Synchronization INF3430 Clock and Synchronization P.P.Chu Using VHDL Chapter 16.1-6 INF 3430 - H12 : Chapter 16.1-6 1 Outline 1. Why synchronous? 2. Clock distribution network and skew 3. Multiple-clock system 4. Meta-stability

More information

SDR14TX: Synchronization of multiple devices via PXIe backplane triggering

SDR14TX: Synchronization of multiple devices via PXIe backplane triggering 1 (5) Application Note: SDR14TX: Synchronization of multiple devices via PXIe backplane triggering Table of Contents 1 Introduction... 2 2 Overview... 2 3 PXIe backplane trigger signals... 2 3.1 Overview...

More information

Java Bread Board Introductory Digital Electronics Exercise 2, Page 1

Java Bread Board Introductory Digital Electronics Exercise 2, Page 1 Java Bread Board Introductory Digital Electronics Exercise 2, Page 1 JBB Excercise 2 The aim of this lab is to demonstrate how basic logic gates can be used to implement simple memory functions, introduce

More information

logic system Outputs The addition of feedback means that the state of the circuit may change with time; it is sequential. logic system Outputs

logic system Outputs The addition of feedback means that the state of the circuit may change with time; it is sequential. logic system Outputs Sequential Logic The combinational logic circuits we ve looked at so far, whether they be simple gates or more complex circuits have clearly separated inputs and outputs. A change in the input produces

More information

Project 3 Build a 555-Timer

Project 3 Build a 555-Timer Project 3 Build a 555-Timer For this project, each group will simulate and build an astable multivibrator. However, instead of using the 555 timer chip, you will have to use the devices you learned about

More information

Lab Exercise 9: Stepper and Servo Motors

Lab Exercise 9: Stepper and Servo Motors ME 3200 Mechatronics Laboratory Lab Exercise 9: Stepper and Servo Motors Introduction In this laboratory exercise, you will explore some of the properties of stepper and servomotors. These actuators are

More information

In this lecture, we will first examine practical digital signals. Then we will discuss the timing constraints in digital systems.

In this lecture, we will first examine practical digital signals. Then we will discuss the timing constraints in digital systems. 1 In this lecture, we will first examine practical digital signals. Then we will discuss the timing constraints in digital systems. The important concepts are related to setup and hold times of registers

More information

Name EET 1131 Lab #2 Oscilloscope and Multisim

Name EET 1131 Lab #2 Oscilloscope and Multisim Name EET 1131 Lab #2 Oscilloscope and Multisim Section 1. Oscilloscope Introduction Equipment and Components Safety glasses Logic probe ETS-7000 Digital-Analog Training System Fluke 45 Digital Multimeter

More information

Lab 1.2 Joystick Interface

Lab 1.2 Joystick Interface Lab 1.2 Joystick Interface Lab 1.0 + 1.1 PWM Software/Hardware Design (recap) The previous labs in the 1.x series put you through the following progression: Lab 1.0 You learnt some theory behind how one

More information

Microprocessor & Interfacing Lecture Programmable Interval Timer

Microprocessor & Interfacing Lecture Programmable Interval Timer Microprocessor & Interfacing Lecture 30 8254 Programmable Interval Timer P A R U L B A N S A L A S S T P R O F E S S O R E C S D E P A R T M E N T D R O N A C H A R Y A C O L L E G E O F E N G I N E E

More information

6.111 Lecture # 19. Controlling Position. Some General Features of Servos: Servomechanisms are of this form:

6.111 Lecture # 19. Controlling Position. Some General Features of Servos: Servomechanisms are of this form: 6.111 Lecture # 19 Controlling Position Servomechanisms are of this form: Some General Features of Servos: They are feedback circuits Natural frequencies are 'zeros' of 1+G(s)H(s) System is unstable if

More information

ArbStudio Training Guide

ArbStudio Training Guide ArbStudio Training Guide Summary This guide provides step by step instructions explaining how to create waveforms, use the waveform sequencer, modulate waveforms and generate digital patterns. The exercises

More information

AC : A TURING MACHINE FOR THE 21ST CENTURY

AC : A TURING MACHINE FOR THE 21ST CENTURY AC 2007-745: A TURING MACHINE FOR THE 21ST CENTURY Christopher Carroll, University of Minnesota-Duluth CHRISTOPHER R. CARROLL Christopher R. Carroll earned his academic degrees from Georgia Tech and from

More information

Digital Electronics. A. I can list five basic safety rules for electronics. B. I can properly display large and small numbers in proper notation,

Digital Electronics. A. I can list five basic safety rules for electronics. B. I can properly display large and small numbers in proper notation, St. Michael Albertville High School Teacher: Scott Danielson September 2016 Content Skills Learning Targets Standards Assessment Resources & Technology CEQ: WHAT MAKES DIGITAL ELECTRONICS SO IMPORTANT

More information

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter

Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter Column #18, August 1996 by Scott Edwards: Need Analog Output from the Stamp? Dial it in with a Digital Potentiometer Using the DS1267 potentiometer as a versatile digital-to-analog converter GETTING AN

More information

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd.

Controlling DC Brush Motor using MD10B or MD30B. Version 1.2. Aug Cytron Technologies Sdn. Bhd. PR10 Controlling DC Brush Motor using MD10B or MD30B Version 1.2 Aug 2008 Cytron Technologies Sdn. Bhd. Information contained in this publication regarding device applications and the like is intended

More information

2014 Paper E2.1: Digital Electronics II

2014 Paper E2.1: Digital Electronics II 2014 Paper E2.1: Digital Electronics II Answer ALL questions. There are THREE questions on the paper. Question ONE counts for 40% of the marks, other questions 30% Time allowed: 2 hours (Not to be removed

More information

Sequential Logic Circuits

Sequential Logic Circuits LAB EXERCISE - 5 Page 1 of 6 Exercise 5 Sequential Logic Circuits 1 - Introduction Goal of the exercise The goals of this exercise are: - verify the behavior of simple sequential logic circuits; - measure

More information

EE 42/100 Lecture 24: Latches and Flip Flops. Rev B 4/21/2010 (2:04 PM) Prof. Ali M. Niknejad

EE 42/100 Lecture 24: Latches and Flip Flops. Rev B 4/21/2010 (2:04 PM) Prof. Ali M. Niknejad A. M. Niknejad University of California, Berkeley EE 100 / 42 Lecture 24 p. 1/21 EE 42/100 Lecture 24: Latches and Flip Flops ELECTRONICS Rev B 4/21/2010 (2:04 PM) Prof. Ali M. Niknejad University of California,

More information

CHAPTER 5 NOVEL CARRIER FUNCTION FOR FUNDAMENTAL FORTIFICATION IN VSI

CHAPTER 5 NOVEL CARRIER FUNCTION FOR FUNDAMENTAL FORTIFICATION IN VSI 98 CHAPTER 5 NOVEL CARRIER FUNCTION FOR FUNDAMENTAL FORTIFICATION IN VSI 5.1 INTRODUCTION This chapter deals with the design and development of FPGA based PWM generation with the focus on to improve the

More information

BME 194: Applied Circuits Lab 04: hysteresis

BME 194: Applied Circuits Lab 04: hysteresis BME 94: Applied Circuits Lab 04: hysteresis Kevin Karplus January 4, 203 Design Goal There are three parts to this lab: characterizing a Schmitt-trigger inverter. designing a hysteresis oscillator for

More information

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE

EE 308 Spring S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE 9S12 SUBSYSTEMS: PULSE WIDTH MODULATION, A/D CONVERTER, AND SYNCHRONOUS SERIAN INTERFACE In this sequence of three labs you will learn to use the 9S12 S hardware sybsystem. WEEK 1 PULSE WIDTH MODULATION

More information

RC Filters and Basic Timer Functionality

RC Filters and Basic Timer Functionality RC-1 Learning Objectives: RC Filters and Basic Timer Functionality The student who successfully completes this lab will be able to: Build circuits using passive components (resistors and capacitors) from

More information

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ

νµθωερτψυιοπασδφγηϕκλζξχϖβνµθωερτ ψυιοπασδφγηϕκλζξχϖβνµθωερτψυιοπα σδφγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκ χϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµθ θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ υιοπασδφγηϕκλζξχϖβνµθωερτψυιοπασδ φγηϕκλζξχϖβνµθωερτψυιοπασδφγηϕκλζ ξχϖβνµθωερτψυιοπασδφγηϕκλζξχϖβνµ EE 331 Design Project Final Report θωερτψυιοπασδφγηϕκλζξχϖβνµθωερτψ

More information

CS/EE Homework 9 Solutions

CS/EE Homework 9 Solutions S/EE 260 - Homework 9 Solutions ue 4/6/2000 1. onsider the synchronous ripple carry counter on page 5-8 of the notes. Assume that the flip flops have a setup time requirement of 2 ns and that the gates

More information

Bohunt School (Wokingham) Internet of Things (IoT) and Node-RED

Bohunt School (Wokingham) Internet of Things (IoT) and Node-RED This practical session should be a bit of fun for you. It involves creating a distance sensor node using the SRF05 ultrasonic device. How the SRF05 works Here s a photo of the SRF05. The silver metal cans

More information

Final Report MAL-9000

Final Report MAL-9000 Final Report MAL-9000 Abstract: This paper describes the second and final stage of development of a Musical Automated Lifeform (MAL) at the University of Illinois at Urbana- Champaign. It explains design

More information

ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM)

ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM) ENGR 1110: Introduction to Engineering Lab 7 Pulse Width Modulation (PWM) Supplies Needed Motor control board, Transmitter (with good batteries), Receiver Equipment Used Oscilloscope, Function Generator,

More information

EE 209 Lab Range Finder

EE 209 Lab Range Finder EE 209 Lab Range Finder 1 Introduction In this lab you will build a digital controller for an ultrasonic range finder that will be able to determine the distance between the range finder and an object

More information

EE 42/100 Lecture 24: Latches and Flip Flops. Rev A 4/14/2010 (8:30 PM) Prof. Ali M. Niknejad

EE 42/100 Lecture 24: Latches and Flip Flops. Rev A 4/14/2010 (8:30 PM) Prof. Ali M. Niknejad A. M. Niknejad University of California, Berkeley EE 100 / 42 Lecture 24 p. 1/15 EE 42/100 Lecture 24: Latches and Flip Flops ELECTRONICS Rev A 4/14/2010 (8:30 PM) Prof. Ali M. Niknejad University of California,

More information

EECS150 - Digital Design Lecture 28 Course Wrap Up. Recap 1

EECS150 - Digital Design Lecture 28 Course Wrap Up. Recap 1 EECS150 - Digital Design Lecture 28 Course Wrap Up Dec. 5, 2013 Prof. Ronald Fearing Electrical Engineering and Computer Sciences University of California, Berkeley (slides courtesy of Prof. John Wawrzynek)

More information

Breadboard Primer. Experience. Objective. No previous electronics experience is required.

Breadboard Primer. Experience. Objective. No previous electronics experience is required. Breadboard Primer Experience No previous electronics experience is required. Figure 1: Breadboard drawing made using an open-source tool from fritzing.org Objective A solderless breadboard (or protoboard)

More information

Quantizer step: volts Input Voltage [V]

Quantizer step: volts Input Voltage [V] EE 101 Fall 2008 Date: Lab Section # Lab #8 Name: A/D Converter and ECEbot Power Abstract Partner: Autonomous robots need to have a means to sense the world around them. For example, the bumper switches

More information

PRESENTATION OF THE PROJECTX-FINAL LEVEL 1.

PRESENTATION OF THE PROJECTX-FINAL LEVEL 1. Implementation of digital it frequency dividersid PRESENTATION OF THE PROJECTX-FINAL LEVEL 1. Why frequency divider? Motivation widely used in daily life Time counting (electronic clocks, traffic lights,

More information

FPGAs: Why, When, and How to use them (with RFNoC ) Pt. 1 Martin Braun, Nicolas Cuervo FOSDEM 2017, SDR Devroom

FPGAs: Why, When, and How to use them (with RFNoC ) Pt. 1 Martin Braun, Nicolas Cuervo FOSDEM 2017, SDR Devroom FPGAs: Why, When, and How to use them (with RFNoC ) Pt. 1 Martin Braun, Nicolas Cuervo FOSDEM 2017, SDR Devroom Schematic of a typical SDR Very rough schematic: Analog Stuff ADC/DAC FPGA GPP Let s ignore

More information

ANLAN203. KSZ84xx GPIO Pin Output Functionality. Introduction. Overview of GPIO and TOU

ANLAN203. KSZ84xx GPIO Pin Output Functionality. Introduction. Overview of GPIO and TOU ANLAN203 KSZ84xx GPIO Pin Output Functionality Introduction Devices in Micrel s ETHERSYNCH family have several GPIO pins that are linked to the internal IEEE 1588 precision time protocol (PTP) clock. These

More information

Experiment 9 : Pulse Width Modulation

Experiment 9 : Pulse Width Modulation Name/NetID: Experiment 9 : Pulse Width Modulation Laboratory Outline In experiment 5 we learned how to control the speed of a DC motor using a variable resistor. This week, we will learn an alternative

More information

Connect Four Emulator

Connect Four Emulator Connect Four Emulator James Van Koevering, Kevin Weinert, Diana Szeto, Kyle Johannes Electrical and Computer Engineering Department School of Engineering and Computer Science Oakland University, Rochester,

More information

Cornerstone Electronics Technology and Robotics Week 21 Electricity & Electronics Section 10.5, Oscilloscope

Cornerstone Electronics Technology and Robotics Week 21 Electricity & Electronics Section 10.5, Oscilloscope Cornerstone Electronics Technology and Robotics Week 21 Electricity & Electronics Section 10.5, Oscilloscope Field trip to Deerhaven Generation Plant: Administration: o Prayer o Turn in quiz Electricity

More information

FPGA-Based Autonomous Obstacle Avoidance Robot.

FPGA-Based Autonomous Obstacle Avoidance Robot. People s Democratic Republic of Algeria Ministry of Higher Education and Scientific Research University M Hamed BOUGARA Boumerdes Institute of Electrical and Electronic Engineering Department of Electronics

More information

University of Pittsburgh

University of Pittsburgh University of Pittsburgh Experiment #7 Lab Report Analog-Digital Applications Submission Date: 08/01/2018 Instructors: Dr. Ahmed Dallal Shangqian Gao Submitted By: Nick Haver & Alex Williams Station #2

More information

CorePWM Datasheet. Product Summary. Table of Contents. Core Deliverables. Intended Use. Key Features. Synthesis and Simulation Support

CorePWM Datasheet. Product Summary. Table of Contents. Core Deliverables. Intended Use. Key Features. Synthesis and Simulation Support Product Summary Intended Use General Purpose Pulse Width Modulation (PWM) Module for Motor Control, Tone Generation, Battery Charging, Heating Elements, and Digitalto-Analog Conversions Key Features Low

More information

DE1.3 Electronics 1. Tips on Team Projects

DE1.3 Electronics 1. Tips on Team Projects DE1.3 Electronics 1 Tips on Team Projects To help you progress with the team project, I have prepared this documents to provide extra instructions that you should find helpful. 1. How can I drive TWO motors

More information

Graphical Control Panel User Manual

Graphical Control Panel User Manual Graphical Control Panel User Manual DS-MPE-DAQ0804 PCIe Minicard Data Acquisition Module For Universal Driver Version 7.0.0 and later Revision A.0 March 2015 Revision Date Comment A.0 3/18/2015 Initial

More information

The SOL-20 Computer s Cassette interface.

The SOL-20 Computer s Cassette interface. The SOL-20 Computer s Cassette interface. ( H. Holden. Dec. 2018 ) Introduction: The Cassette interface designed by Processor Technology (PT) for their SOL-20 was made to be compatible with the Kansas

More information

Class #6: Experiment The 555-Timer & Pulse Width Modulation

Class #6: Experiment The 555-Timer & Pulse Width Modulation Class #6: Experiment The 555-Timer & Pulse Width Modulation Purpose: In this experiment we look at the 555-timer, a device that uses digital devices and other electronic switching elements to generate

More information

SRV ENGINEERING COLLEGE SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI

SRV ENGINEERING COLLEGE SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI SEMBODAI RUKMANI VARATHARAJAN ENGINEERING COLLEGE SEMBODAI 6489 (Approved By AICTE,Newdelhi Affiliated To ANNA UNIVERSITY::Chennai) CS 62 DIGITAL ELECTRONICS LAB (REGULATION-23) LAB MANUAL DEPARTMENT OF

More information

Input/Output Control Using Interrupt Service Routines to Establish a Time base

Input/Output Control Using Interrupt Service Routines to Establish a Time base CSUS EEE174 Lab Input/Output Control Using Interrupt Service Routines to Establish a Time base 599 Menlo Drive, Suite 100 Rocklin, California 95765, USA Office/Tech Support: (916) 624-8333 Fax: (916) 624-8003

More information

E85: Digital Design and Computer Architecture

E85: Digital Design and Computer Architecture E85: Digital Design and Computer Architecture Lab 1: Electrical Characteristics of Logic Gates Objective The purpose of this lab is to become comfortable with logic gates as physical objects, to interpret

More information

Adder Comparator 7 segment display Decoder for 7 segment display D flip flop Analysis of sequential circuits. Sequence detector

Adder Comparator 7 segment display Decoder for 7 segment display D flip flop Analysis of sequential circuits. Sequence detector Lecture 3 Adder Comparator 7 segment display Decoder for 7 segment display D flip flop Analysis of sequential circuits Counter Sequence detector TNGE11 Digitalteknik, Lecture 3 1 Adder TNGE11 Digitalteknik,

More information