SlideShare a Scribd company logo
1 of 2
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 588
IoT Based Adaptive Traffic Monitoring
Aakanksha Satpute1, Sarang Kale2, Akshay Saraf3 , Vaishnavi Yajurvedi4
1Software Engineer at Capgemini Bangalore, Karnataka, India
2 Associate Engineer at Emerson Pune, Maharashtra, India
3student at MGM’s Jawaharlal Nehru College Aurangabad, Maharashtra, India
4 Associate Consultant at Atos-Syntel Pune, Maharashtra, India
---------------------------------------------------------------------***------------------------------------------------------------------
Abstract: Trespassing the traffic rules and increasing
vehicular traffic are the considerable problem every
country in the world is facing. Therefore, it is required to
explore the options to better accommodate the increasing
demand of traffic control and stop breaching the traffic
rules. One of them is the development of simulated model
and optimization of traffic control. The new architecture
and design theory of this system is integrated with a lot of
hardware modules such as AVR 328 microcontroller as a
control unit to combine with raspberry pi by the
hardware/software co-design, the new traffic control
system can be designed. The possibilities of traffic jams,
caused by traffic lights can be dodged by simply retiming
traffic lights can provide significant benefits by reducing
vehicle stops, travel times, and fuel consumption. Also, the
breaching of red light can be evaded by using a camera
with raspberry pi. This can be done with the help of IR
sensors.
Key words: traffic control, AVR 328 microcontroller,
Arduino, raspberry pi, traffic lights, camera, IR
sensors, TSOP sensor.
1.INTRODUCTION
Traffic research has the goal to optimize traffic flow of
people and goods. As the number of vehicles running on
the road is increasing continuously, the infrastructure of
traffic regulation system must be updated.
The increasing number of vehicles and the lower phase
of highways developments have led to traffic congestion
problem. There are many factors that lead to traffic
congestion such as the density of vehicles on the roads,
human habits, social behavior, and traffic light system.
One major factor is due to the traffic light system that
controls the traffic at junction. No doubt traffic police are
there to regulate the traffic congestion, but what if there
is an automated system which regulates the traffic and
also keeps an eye on the people who are violating the
traffic rules? In this paper, the idea of automated traffic
control is suggested. This project has main three parts
viz. Density detection and varying time according to
density of vehicles, detecting signal jump, capturing the
image of the person jumping the signal and sending it.
1.1 Hardware Platform
Hardware platform contains all the hardware that are
going to be used to implement it. To detect the density of
vehicles, we need IR sensors. A set of four IR sensors are
used. Three are used for showing low, medium and high
density and one is used to detect the signal jump. Along
with IR sensors, we need a microcontroller to collect the
results of sensors and take further action. We are using
AVR 328 for this project. A LCD is used to show the
density status. Three LED represents the traffic light viz.
red, yellow and green. For capturing images and sending
mails we are using Raspberry pi 2B. A memory card is
inserted in raspberry pi. Apart from these, a 12V DC
motor, LAN/WiFi and camera are needed.
1.2 Software Platform
Software required for the raspberry pi are as follows:
1. Raspbian OS (for Raspberry Pi)
2. Python (Development)
3. SMTP Client Software (Mail)
4. ssmtp(delivers email)
5. fswebcam(To take pictures from camera)
6. Mailutils(for delivering email through command
line)
7. Mpack(Processing of signals received from sensors)
Apart from these raspberry software, we need Arduino
to write a code for microcontroller.
2. Detecting vehicle density[1]
It is easy task as compared to others. This will be done
by the three IR sensors. These three IR sensors are
placed on either side of the road at a distance from each
other. The reason of using IR sensor is that it detects the
obstacle. When the vehicles comes in the range of the
sensor, it detects an obstacle. On the RED light, when
only one IR sensor detects the obstacle, it means the
density of vehicles is low. When two IR sensors are ON at
the same time, it means the density is medium. And
when all three sensors are ON at the same time it means
the density is high. These IR sensor’s output is given to
comparator IC LM393. These ICs are used to convert the
analog signal into digital for the further processing of
microcontroller as it requires digital signals.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072
© 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 589
This data is given to microcontroller. Now,
microcontroller varies the timing of green signal to clear
the traffic according to the vehicle density. The code for
this condition is written in Arduino.
2.1. Detecting signal jump[2]
To detect a signal jump, IR sensor is used. It will work
only when RED signal is ON. The logic of using IR sensor
here is that, whenever a person breaks the signal, he/she
will come in range of the IR sensor and this will turn it
ON. The signal will be sent to microcontroller and it will
turn the raspberry pi ON. Now, raspberry pi will click the
picture of the number plate of the vehicle. Also, if anyone
stops the vehicle on the zebra crossing, then it will be
considered as a signal jump. This is done to prevent
people from stopping on zebra crossings.
There’s one more feature added to slow down the speeds
of vehicles. When the RED signal is ON, a speed breaker
will come up to discourage people from jumping the
signal. It will go down automatically when the signal
turns GREEN. This will be done with the help of 12V DC
motor. This motor is driven by microcontroller and a
motor driver IC L293D.
The motor is rotated clock-wise and counter clock-wise
on RED and GREEN light respectively.
2.2. Capturing image and sending it
Here comes the role of raspberry pi. First install the
raspbian OS to get it functional.
When a signal jump is detected, the raspberry pi turns
ON and it captures the image by the camera. To capture
the image, fswebcam must be installed in raspberry pi.
Without this, it will not capture the images. After
capturing the image, the image is saved in memory card.
Now, to mail the captured image, SMTP and ssmtp must
be installed in raspberry pi. Also, if you want to deliver
the mails through command line, then you have to install
mail utils.
This mail is sent to the authorized mail id which was
given in the code. The authorized person gets the image
of the vehicle’s number breaking the signal and the
action to be taken place is easier.
2.3. Special remote for ambulance
It will be difficult for ambulance to go through the traffic
when there are vehicles stopped in front of it because of
red light. So, to overcome this problem, ambulances are
to be given an IR remote to change the signal from RED
to GREEN so that traffic will be cleared and ambulance
can go without any problem. We need a TSOP sensor for
this purpose. TSOP sensor is the IR receiver sensor. It
will receive the signal from IR remote and give signal to
microcontroller so that microcontroller will change the
signal light accordingly.
The IR remote is any ready-made simple IR remote. To
get it compatible with the project, we need to write a
code for it. This can be done with the help of
programming in Arduino. Write a code to decode[3] the
IR remote buttons, make a simple circuit on Arduino
board with TSOP sensor and you will be able to decode
the remote. After this you can assign any desired button
to change the red light to green.
3. Conclusions
The project was implemented on small scale and all the
methodologies described above are full proof and
functional. The timing of the green signal is varied as
defined according to the density of vehicles. Photo of
number plate of the vehicle jumping the signal captured
and mailed successfully. Also, the IR remote works fine
with the TSOP sensor.
REFERENCES
[1] Ashwini Basavaraju, Senhalata Doddigarla, Navitha
Naidu, Shruti Malgatti “VEHICLE DENSITY SENSOR
SYSTEM TO MANAGE TRAFFIC” IJRET: eISSN: 2319-
1163 | pISSN: 2321-7308
[2] Rohit Chandrashekhar Iyer, Rohit S. Garode , Aniket
P. Bhoyar “Signal Jump Detection Process” International
Journal of Computer Applications Technology and
Research Volume 6–Issue 2, 101-105, 2017, ISSN:-2319–
8656
[3] https://www.maxphi.com/ir-remote-control-
decoder-using-arduino

More Related Content

What's hot

IRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET Journal
 
IRJET- A Survey on Various Location Tracking Systems
IRJET- A Survey on Various Location Tracking SystemsIRJET- A Survey on Various Location Tracking Systems
IRJET- A Survey on Various Location Tracking SystemsIRJET Journal
 
Traffic and Admission Clearance for Patient on Ambulance
Traffic and Admission Clearance for Patient on Ambulance	Traffic and Admission Clearance for Patient on Ambulance
Traffic and Admission Clearance for Patient on Ambulance journal ijrtem
 
IRJET- Personal Assistant for Visually Impaired People in Malls
IRJET-  	  Personal Assistant for Visually Impaired People in MallsIRJET-  	  Personal Assistant for Visually Impaired People in Malls
IRJET- Personal Assistant for Visually Impaired People in MallsIRJET Journal
 
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...
IRJET- Animal Identification in Roads and Alert System for Passengers usi...IRJET Journal
 
Design and Implementation of Smart Car Driving
Design and Implementation of Smart Car DrivingDesign and Implementation of Smart Car Driving
Design and Implementation of Smart Car Drivingijiert bestjournal
 
IRJET- IoT based Accident Tracking and Reporting
IRJET- IoT based Accident Tracking and ReportingIRJET- IoT based Accident Tracking and Reporting
IRJET- IoT based Accident Tracking and ReportingIRJET Journal
 
IRJET - Traffic Signal Automation using Spike Road Block
IRJET - Traffic Signal Automation using Spike Road BlockIRJET - Traffic Signal Automation using Spike Road Block
IRJET - Traffic Signal Automation using Spike Road BlockIRJET Journal
 
IRJET - Dual Verification ATM for Blind People
IRJET -  	  Dual Verification ATM for Blind PeopleIRJET -  	  Dual Verification ATM for Blind People
IRJET - Dual Verification ATM for Blind PeopleIRJET Journal
 
IRJET- Real Time Video Surveillance Architecture for Secured City Automation
IRJET-  	  Real Time Video Surveillance Architecture for Secured City AutomationIRJET-  	  Real Time Video Surveillance Architecture for Secured City Automation
IRJET- Real Time Video Surveillance Architecture for Secured City AutomationIRJET Journal
 
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...IRJET Journal
 
Internet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmInternet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmIRJET Journal
 
IRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control SystemIRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control SystemIRJET Journal
 
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN CapabilitiesIRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN CapabilitiesIRJET Journal
 
IRJET - Gesture based Robot with Victim Detection using Audio
IRJET - Gesture based Robot with Victim Detection using AudioIRJET - Gesture based Robot with Victim Detection using Audio
IRJET - Gesture based Robot with Victim Detection using AudioIRJET Journal
 
IRJET- Hand Gesture based Camera Monitorning System using Raspberry Pi
IRJET- Hand Gesture based Camera Monitorning System using Raspberry PiIRJET- Hand Gesture based Camera Monitorning System using Raspberry Pi
IRJET- Hand Gesture based Camera Monitorning System using Raspberry PiIRJET Journal
 
Traffic Clearance for Emergency Vehicles Using Priority Mode
Traffic Clearance for Emergency Vehicles Using Priority ModeTraffic Clearance for Emergency Vehicles Using Priority Mode
Traffic Clearance for Emergency Vehicles Using Priority ModeIRJET Journal
 
IRJET- Multiple Motion Control System of Robotic Car Based on IoT
IRJET- Multiple Motion Control System of Robotic Car Based on IoTIRJET- Multiple Motion Control System of Robotic Car Based on IoT
IRJET- Multiple Motion Control System of Robotic Car Based on IoTIRJET Journal
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEIAEME Publication
 

What's hot (20)

IRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFIDIRJET- Automatic Metro Train using RFID
IRJET- Automatic Metro Train using RFID
 
IRJET- A Survey on Various Location Tracking Systems
IRJET- A Survey on Various Location Tracking SystemsIRJET- A Survey on Various Location Tracking Systems
IRJET- A Survey on Various Location Tracking Systems
 
Traffic and Admission Clearance for Patient on Ambulance
Traffic and Admission Clearance for Patient on Ambulance	Traffic and Admission Clearance for Patient on Ambulance
Traffic and Admission Clearance for Patient on Ambulance
 
IRJET- Personal Assistant for Visually Impaired People in Malls
IRJET-  	  Personal Assistant for Visually Impaired People in MallsIRJET-  	  Personal Assistant for Visually Impaired People in Malls
IRJET- Personal Assistant for Visually Impaired People in Malls
 
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...IRJET-  	  Animal Identification in Roads and Alert System for Passengers usi...
IRJET- Animal Identification in Roads and Alert System for Passengers usi...
 
Design and Implementation of Smart Car Driving
Design and Implementation of Smart Car DrivingDesign and Implementation of Smart Car Driving
Design and Implementation of Smart Car Driving
 
SENSOR DATA COMMUNICATION TO THNIGSPEAK IOT PLATFORM USING RASPBERRY P
SENSOR DATA COMMUNICATION TO THNIGSPEAK  IOT PLATFORM USING RASPBERRY PSENSOR DATA COMMUNICATION TO THNIGSPEAK  IOT PLATFORM USING RASPBERRY P
SENSOR DATA COMMUNICATION TO THNIGSPEAK IOT PLATFORM USING RASPBERRY P
 
IRJET- IoT based Accident Tracking and Reporting
IRJET- IoT based Accident Tracking and ReportingIRJET- IoT based Accident Tracking and Reporting
IRJET- IoT based Accident Tracking and Reporting
 
IRJET - Traffic Signal Automation using Spike Road Block
IRJET - Traffic Signal Automation using Spike Road BlockIRJET - Traffic Signal Automation using Spike Road Block
IRJET - Traffic Signal Automation using Spike Road Block
 
IRJET - Dual Verification ATM for Blind People
IRJET -  	  Dual Verification ATM for Blind PeopleIRJET -  	  Dual Verification ATM for Blind People
IRJET - Dual Verification ATM for Blind People
 
IRJET- Real Time Video Surveillance Architecture for Secured City Automation
IRJET-  	  Real Time Video Surveillance Architecture for Secured City AutomationIRJET-  	  Real Time Video Surveillance Architecture for Secured City Automation
IRJET- Real Time Video Surveillance Architecture for Secured City Automation
 
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...
IRJET - Driver Drowsiness and Alcohol Detection with Car Tracking System usin...
 
Internet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmInternet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic Arm
 
IRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control SystemIRJET- GSM & GPS Based Vehicle Theft Control System
IRJET- GSM & GPS Based Vehicle Theft Control System
 
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN CapabilitiesIRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
IRJET- Low Cost Personal Digital Assistant with IoT and WSN Capabilities
 
IRJET - Gesture based Robot with Victim Detection using Audio
IRJET - Gesture based Robot with Victim Detection using AudioIRJET - Gesture based Robot with Victim Detection using Audio
IRJET - Gesture based Robot with Victim Detection using Audio
 
IRJET- Hand Gesture based Camera Monitorning System using Raspberry Pi
IRJET- Hand Gesture based Camera Monitorning System using Raspberry PiIRJET- Hand Gesture based Camera Monitorning System using Raspberry Pi
IRJET- Hand Gesture based Camera Monitorning System using Raspberry Pi
 
Traffic Clearance for Emergency Vehicles Using Priority Mode
Traffic Clearance for Emergency Vehicles Using Priority ModeTraffic Clearance for Emergency Vehicles Using Priority Mode
Traffic Clearance for Emergency Vehicles Using Priority Mode
 
IRJET- Multiple Motion Control System of Robotic Car Based on IoT
IRJET- Multiple Motion Control System of Robotic Car Based on IoTIRJET- Multiple Motion Control System of Robotic Car Based on IoT
IRJET- Multiple Motion Control System of Robotic Car Based on IoT
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
 

Similar to IRJET- IoT based Adaptive Traffic Monitoring

IRJET- IoT based Motion Control System of a Robotic car
IRJET-  	  IoT based Motion Control System of a Robotic carIRJET-  	  IoT based Motion Control System of a Robotic car
IRJET- IoT based Motion Control System of a Robotic carIRJET Journal
 
IRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET Journal
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewIRJET Journal
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET Journal
 
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...IRJET Journal
 
Intelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIntelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIRJET Journal
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention SystemIRJET Journal
 
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontrollerijtsrd
 
IRJET- IoT based Smart Ambulance System
IRJET-  	  IoT based Smart Ambulance SystemIRJET-  	  IoT based Smart Ambulance System
IRJET- IoT based Smart Ambulance SystemIRJET Journal
 
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSMOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSIRJET Journal
 
Spy Robot with Wireless Camera using GSM
Spy Robot with Wireless Camera using GSMSpy Robot with Wireless Camera using GSM
Spy Robot with Wireless Camera using GSMIRJET Journal
 
IRJET- IoT based Garbage Management System for Smart City using Raspberry Pi
IRJET- IoT based Garbage Management System for Smart City using Raspberry PiIRJET- IoT based Garbage Management System for Smart City using Raspberry Pi
IRJET- IoT based Garbage Management System for Smart City using Raspberry PiIRJET Journal
 
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...IRJET Journal
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET Journal
 
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...ijtsrd
 
IRJET- Emergency Vehicle Pre-Emption using Smart City Concept
IRJET- Emergency Vehicle Pre-Emption using Smart City ConceptIRJET- Emergency Vehicle Pre-Emption using Smart City Concept
IRJET- Emergency Vehicle Pre-Emption using Smart City ConceptIRJET Journal
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET Journal
 
IRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET Journal
 

Similar to IRJET- IoT based Adaptive Traffic Monitoring (20)

IRJET- IoT based Motion Control System of a Robotic car
IRJET-  	  IoT based Motion Control System of a Robotic carIRJET-  	  IoT based Motion Control System of a Robotic car
IRJET- IoT based Motion Control System of a Robotic car
 
IRJET-Smart Parking System
IRJET-Smart Parking SystemIRJET-Smart Parking System
IRJET-Smart Parking System
 
Smart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A ReviewSmart anti-theft system for the security of vehicles- A Review
Smart anti-theft system for the security of vehicles- A Review
 
IRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation SystemIRJET- Smart Bus Transportation System
IRJET- Smart Bus Transportation System
 
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
 
Intelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded systemIntelligent traffic light controller using embedded system
Intelligent traffic light controller using embedded system
 
IRJET- Do not Park
IRJET- Do not ParkIRJET- Do not Park
IRJET- Do not Park
 
IRJET- Vehicle Accident Prevention System
IRJET-  	  Vehicle Accident Prevention SystemIRJET-  	  Vehicle Accident Prevention System
IRJET- Vehicle Accident Prevention System
 
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using MicrocontrollerFour IR Sensor Based Automatic Control of Railway Gate using Microcontroller
Four IR Sensor Based Automatic Control of Railway Gate using Microcontroller
 
IRJET- IoT based Smart Ambulance System
IRJET-  	  IoT based Smart Ambulance SystemIRJET-  	  IoT based Smart Ambulance System
IRJET- IoT based Smart Ambulance System
 
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERSMOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
MOBILE ROBOTIC ARM WITH APP INTERFACE USING MICROCONTROLLERS
 
Spy Robot with Wireless Camera using GSM
Spy Robot with Wireless Camera using GSMSpy Robot with Wireless Camera using GSM
Spy Robot with Wireless Camera using GSM
 
IRJET- IoT based Garbage Management System for Smart City using Raspberry Pi
IRJET- IoT based Garbage Management System for Smart City using Raspberry PiIRJET- IoT based Garbage Management System for Smart City using Raspberry Pi
IRJET- IoT based Garbage Management System for Smart City using Raspberry Pi
 
IRJET-V8I686.pdf
IRJET-V8I686.pdfIRJET-V8I686.pdf
IRJET-V8I686.pdf
 
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...IRJET-  	  Smart Traffic Monitoring System using Ir Sensors based on Microcon...
IRJET- Smart Traffic Monitoring System using Ir Sensors based on Microcon...
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoT
 
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...
Arduino Based Vehicle Abnormal Behavior Detection System using Camera with SD...
 
IRJET- Emergency Vehicle Pre-Emption using Smart City Concept
IRJET- Emergency Vehicle Pre-Emption using Smart City ConceptIRJET- Emergency Vehicle Pre-Emption using Smart City Concept
IRJET- Emergency Vehicle Pre-Emption using Smart City Concept
 
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
IRJET- Implementation of Smart Black Box System for Gathering the Safety Info...
 
IRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually ImpairedIRJET- Smart Helmet for Visually Impaired
IRJET- Smart Helmet for Visually Impaired
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Call Girls in Nagpur High Profile
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...RajaP95
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSISrknatarajan
 

Recently uploaded (20)

APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Roadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and RoutesRoadmap to Membership of RICS - Pathways and Routes
Roadmap to Membership of RICS - Pathways and Routes
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...Top Rated  Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
Top Rated Pune Call Girls Budhwar Peth ⟟ 6297143586 ⟟ Call Me For Genuine Se...
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
IMPLICATIONS OF THE ABOVE HOLISTIC UNDERSTANDING OF HARMONY ON PROFESSIONAL E...
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANVI) Koregaon Park Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
UNIT-III FMM. DIMENSIONAL ANALYSIS
UNIT-III FMM.        DIMENSIONAL ANALYSISUNIT-III FMM.        DIMENSIONAL ANALYSIS
UNIT-III FMM. DIMENSIONAL ANALYSIS
 

IRJET- IoT based Adaptive Traffic Monitoring

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 588 IoT Based Adaptive Traffic Monitoring Aakanksha Satpute1, Sarang Kale2, Akshay Saraf3 , Vaishnavi Yajurvedi4 1Software Engineer at Capgemini Bangalore, Karnataka, India 2 Associate Engineer at Emerson Pune, Maharashtra, India 3student at MGM’s Jawaharlal Nehru College Aurangabad, Maharashtra, India 4 Associate Consultant at Atos-Syntel Pune, Maharashtra, India ---------------------------------------------------------------------***------------------------------------------------------------------ Abstract: Trespassing the traffic rules and increasing vehicular traffic are the considerable problem every country in the world is facing. Therefore, it is required to explore the options to better accommodate the increasing demand of traffic control and stop breaching the traffic rules. One of them is the development of simulated model and optimization of traffic control. The new architecture and design theory of this system is integrated with a lot of hardware modules such as AVR 328 microcontroller as a control unit to combine with raspberry pi by the hardware/software co-design, the new traffic control system can be designed. The possibilities of traffic jams, caused by traffic lights can be dodged by simply retiming traffic lights can provide significant benefits by reducing vehicle stops, travel times, and fuel consumption. Also, the breaching of red light can be evaded by using a camera with raspberry pi. This can be done with the help of IR sensors. Key words: traffic control, AVR 328 microcontroller, Arduino, raspberry pi, traffic lights, camera, IR sensors, TSOP sensor. 1.INTRODUCTION Traffic research has the goal to optimize traffic flow of people and goods. As the number of vehicles running on the road is increasing continuously, the infrastructure of traffic regulation system must be updated. The increasing number of vehicles and the lower phase of highways developments have led to traffic congestion problem. There are many factors that lead to traffic congestion such as the density of vehicles on the roads, human habits, social behavior, and traffic light system. One major factor is due to the traffic light system that controls the traffic at junction. No doubt traffic police are there to regulate the traffic congestion, but what if there is an automated system which regulates the traffic and also keeps an eye on the people who are violating the traffic rules? In this paper, the idea of automated traffic control is suggested. This project has main three parts viz. Density detection and varying time according to density of vehicles, detecting signal jump, capturing the image of the person jumping the signal and sending it. 1.1 Hardware Platform Hardware platform contains all the hardware that are going to be used to implement it. To detect the density of vehicles, we need IR sensors. A set of four IR sensors are used. Three are used for showing low, medium and high density and one is used to detect the signal jump. Along with IR sensors, we need a microcontroller to collect the results of sensors and take further action. We are using AVR 328 for this project. A LCD is used to show the density status. Three LED represents the traffic light viz. red, yellow and green. For capturing images and sending mails we are using Raspberry pi 2B. A memory card is inserted in raspberry pi. Apart from these, a 12V DC motor, LAN/WiFi and camera are needed. 1.2 Software Platform Software required for the raspberry pi are as follows: 1. Raspbian OS (for Raspberry Pi) 2. Python (Development) 3. SMTP Client Software (Mail) 4. ssmtp(delivers email) 5. fswebcam(To take pictures from camera) 6. Mailutils(for delivering email through command line) 7. Mpack(Processing of signals received from sensors) Apart from these raspberry software, we need Arduino to write a code for microcontroller. 2. Detecting vehicle density[1] It is easy task as compared to others. This will be done by the three IR sensors. These three IR sensors are placed on either side of the road at a distance from each other. The reason of using IR sensor is that it detects the obstacle. When the vehicles comes in the range of the sensor, it detects an obstacle. On the RED light, when only one IR sensor detects the obstacle, it means the density of vehicles is low. When two IR sensors are ON at the same time, it means the density is medium. And when all three sensors are ON at the same time it means the density is high. These IR sensor’s output is given to comparator IC LM393. These ICs are used to convert the analog signal into digital for the further processing of microcontroller as it requires digital signals.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 06 Issue: 05 | May 2019 www.irjet.net p-ISSN: 2395-0072 © 2019, IRJET | Impact Factor value: 7.211 | ISO 9001:2008 Certified Journal | Page 589 This data is given to microcontroller. Now, microcontroller varies the timing of green signal to clear the traffic according to the vehicle density. The code for this condition is written in Arduino. 2.1. Detecting signal jump[2] To detect a signal jump, IR sensor is used. It will work only when RED signal is ON. The logic of using IR sensor here is that, whenever a person breaks the signal, he/she will come in range of the IR sensor and this will turn it ON. The signal will be sent to microcontroller and it will turn the raspberry pi ON. Now, raspberry pi will click the picture of the number plate of the vehicle. Also, if anyone stops the vehicle on the zebra crossing, then it will be considered as a signal jump. This is done to prevent people from stopping on zebra crossings. There’s one more feature added to slow down the speeds of vehicles. When the RED signal is ON, a speed breaker will come up to discourage people from jumping the signal. It will go down automatically when the signal turns GREEN. This will be done with the help of 12V DC motor. This motor is driven by microcontroller and a motor driver IC L293D. The motor is rotated clock-wise and counter clock-wise on RED and GREEN light respectively. 2.2. Capturing image and sending it Here comes the role of raspberry pi. First install the raspbian OS to get it functional. When a signal jump is detected, the raspberry pi turns ON and it captures the image by the camera. To capture the image, fswebcam must be installed in raspberry pi. Without this, it will not capture the images. After capturing the image, the image is saved in memory card. Now, to mail the captured image, SMTP and ssmtp must be installed in raspberry pi. Also, if you want to deliver the mails through command line, then you have to install mail utils. This mail is sent to the authorized mail id which was given in the code. The authorized person gets the image of the vehicle’s number breaking the signal and the action to be taken place is easier. 2.3. Special remote for ambulance It will be difficult for ambulance to go through the traffic when there are vehicles stopped in front of it because of red light. So, to overcome this problem, ambulances are to be given an IR remote to change the signal from RED to GREEN so that traffic will be cleared and ambulance can go without any problem. We need a TSOP sensor for this purpose. TSOP sensor is the IR receiver sensor. It will receive the signal from IR remote and give signal to microcontroller so that microcontroller will change the signal light accordingly. The IR remote is any ready-made simple IR remote. To get it compatible with the project, we need to write a code for it. This can be done with the help of programming in Arduino. Write a code to decode[3] the IR remote buttons, make a simple circuit on Arduino board with TSOP sensor and you will be able to decode the remote. After this you can assign any desired button to change the red light to green. 3. Conclusions The project was implemented on small scale and all the methodologies described above are full proof and functional. The timing of the green signal is varied as defined according to the density of vehicles. Photo of number plate of the vehicle jumping the signal captured and mailed successfully. Also, the IR remote works fine with the TSOP sensor. REFERENCES [1] Ashwini Basavaraju, Senhalata Doddigarla, Navitha Naidu, Shruti Malgatti “VEHICLE DENSITY SENSOR SYSTEM TO MANAGE TRAFFIC” IJRET: eISSN: 2319- 1163 | pISSN: 2321-7308 [2] Rohit Chandrashekhar Iyer, Rohit S. Garode , Aniket P. Bhoyar “Signal Jump Detection Process” International Journal of Computer Applications Technology and Research Volume 6–Issue 2, 101-105, 2017, ISSN:-2319– 8656 [3] https://www.maxphi.com/ir-remote-control- decoder-using-arduino