Interfacing of Traffic light controller

Slides:



Advertisements
Similar presentations
1 ECE 372 – Microcontroller Design Parallel IO Ports - Outputs Parallel IO Ports E.g. Port T, Port AD Used to interface with many devices Switches LEDs.
Advertisements

1 Memory-Mapped I/O Lecture 23 Digital Design and Computer Architecture Harris & Harris Morgan Kaufmann / Elsevier, 2007.
What Affects the Flow of Electricity? Some materials are good conductors. Electricity flows best through conductors. The base and the wires of a light.
Slide 1Fig. 15.1, p.453. Slide 2Fig. 15.1a, p.453.
Slide 1Fig. 11.1, p.337. Slide 2Fig. 11.2, p.338.
Slide 1Fig. 19.1, p Slide 2Fig. 19.2, p. 583.
Slide 1Fig. 21.1, p.641. Slide 2Fig. 21.2, p.642.
Slide 1Fig. 10.1, p.293. Slide 2Fig. 10.1a, p.293.
Slide 1Fig. 5.1, p.113. Slide 2Fig. 5.1a, p.113 Slide 3Fig. 5.1b, p.113.
Fig. 3-1, p. 67. Fig. 3-2, p. 67 Fig. 3-3, p. 68.
Slide 1Fig. 4.1, p.78. Slide 2Fig. 4.3, p.78 Slide 3Fig. 4.4, p.80.
Inside an Incandescent Light Bulb. You are will be using an incandescent light bulb to build circuits in class.
Circuit Review of Exit Ticket
Cause and Effect.  Light Bulb  Short Wire  Long Wire  Coiled Wire  3v Battery  1.5v Battery.
Slide 1Fig 28-CO, p.858. Slide 2Fig 28-1, p.859 Slide 3Fig Q28-19, p.884.
Series and Parallel Circuits Activity. Curriculum Big Idea: Energy can be transferred between objects and/or can be converted into different forms. Concept:
Drive Circuit. What is “drive circuit”? Circuits that are constructed to turn on/off power devices/switches Control circuit Gate driver Provides an interface.
Electricity and Electromagnetism Review
Design a Circuit. Circuits The bulb will only light if there is a battery and a complete circuit.
TEKS 5.6B Demonstrate that the flow of electricity in circuits requires a complete path through which an electric current can pass and can produce light,
1-3 GPIO_Output(LuminaryLibrary) 1.Alter the output current to 4mA 2.Let LED0 turn on but LED 1 turn off. Modify your program in E:\yourname\arm.
Electrical circuits By Caroline.
Electricity & Magnetism Conductors & Insulators. Newton’s 1 st Law Quiz Results Mandatory Quiz Retake Review: Tuesday 12/15 3-4pm Wednesday 12/ pm.
Current Electricity Part 1. Word Bank D-cell Word Bank D-cell – a source of electricity.
18240 Element two - Components INPUTS OUTPUTS PURPOSE TYPICAL USE.
A stop sign is a traffic sign that stands for coming to a complete stop at an intersection or end of the road.
Electricity Notes 6 - Circuits Electric Circuit – _______________________________________ All electrical circuits have 4 parts: 1.____________________________________________________.
Intro. Interfacing & Electronics 1 Interfacing Introduction.
Will one more bulb make a difference? L/O – To investigate what happens when you add bulbs to a circuit.
18 Electric Circuits Connecting light bulb What you need  three light bulbs  a number of connecting wires  a battery What to do 1. Try to connect the.
MICROCONTROLLER INTERFACING WITH STEPPER MOTOR MADE BY: Pruthvirajsinh Jadeja ( ) COLLEGE:DIET BRANCH:EC.
WHY PARALLEL PORT? The simplest computer controlled robot Requires only basic programming skills in C to start off with Can take inputs from your robot.
Electrical Engineering And other practical uses of electricity Part 2.
Launchpad with MIDI TAHA SHASHTARI MAHMOUD AL-SHAKA’A.
One area where in which microprocessor and microcomputers have a major impact is industrial processor control systems. Process control involves first.
8255 Programmable Peripheral Interface
TIME DELAY BASED RELAY OPERATED LOAD
RFID Based Access Control System using 8051
Department of ECE A project Report on
Arduino Based Industrial appliances control system by decoding dual tone multi frequency signals on GSM / CDMA network. Submitted by:
Circuits Series and Parallel.
HOME APPLIANCES CONTROL WITH TIME DELAY SWITCH
PC Mouse operated Electrical Load Control Using VB Application
Cascade switching of an LED
Interfacing of LCD with µP
AIM: To control the movement of a manual wheelchair by means of human voice for paralyzed patients.
Interfacing of stepper motor
Electrical actuation systems
Project name: Traffic Guide using Wireless Radio
Transistor & Voltage Divider
Lesson 9: Digital Input-Output Signal Interfacing
Natural Sciences and Technology Grade 6
Batteries: the Chemistry
Series Circuits Lesson 8.
Natural Sciences and Technology Grade 6
Creating Electrical Circuits
DC motor.
DUAL CONVERTER WITH POWER TRANSISTOR AND SPEED CONTROL FOR DC MOTOR
Design Of Low-Power Wireless Communication System Based On MSP430
Programmable Peripheral Interface
5 a day revision Energy and electricity What is efficiency?
ELECTRICAL CIRCUITS AND CONSTRUCTIONS An electrical circuit is a network consisting of a closed loop, giving a return path for the current 2.
HYDRAULICS & PNEUMATICS
Actuators and acting electrical signal digital signal.
Warm up In your own words describe what you think electricity is.
Shell Appalachia Road Transport Forum
Optical Switch Evaluation Kit Circuit Board and Software
Conductors and Insulators (1:46)
TEKS 5.6B Demonstrate that the flow of electricity in circuits requires a complete path through which an electric current can pass and can produce light,
Motor Control Compiled Systems
Presentation transcript:

Interfacing of Traffic light controller

HARDWARE FOR TRAFFIC LIGHT CONTROL 12 electric bulbs Port A is used to control lights on N-S road and Port B is used to control lights on W-E road. Electric bulbs are controlled by relays. 8255 pins are used to control relay on-off action with the help of relay driver circuits. The driver circuit includes 12 transistors to drive 12 relays.

Interfacing of Traffic light controller

Software for traffic light controller

Program:- OUT 83H (CR) START: MVI A, 09H OUT 80H (PA) MVI A, 24H OUT 81H (PB) CALL DELAY1 MVI A, 12H OUT (80H) PA OUT (81H) PB CALL DELAY2 MVI A, 24H OUT 80H (PA) MVI A, 09H OUT 81H (PB) CALL DELAY1 MVI A, 12H OUT PA OUT PB CALL DELAY2 JMP START