SlideShare a Scribd company logo
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

PDF
IRJET - Smart Traffic Management System
PDF
IRJET - Density based Traffic Management System
PDF
Secured Spy for Highly Secured Areas
PDF
IRJET- Portable Surveillance Robot using IoT
PDF
IRJET- Dynamic Status Tracking & Security System
PDF
IRJET- IoT Based E-Challan Automation for RTO using RFID
PPTX
Presentation IOT Robot
PDF
IRJET- Automatic Gate Control and Parking System using AVR Controller
IRJET - Smart Traffic Management System
IRJET - Density based Traffic Management System
Secured Spy for Highly Secured Areas
IRJET- Portable Surveillance Robot using IoT
IRJET- Dynamic Status Tracking & Security System
IRJET- IoT Based E-Challan Automation for RTO using RFID
Presentation IOT Robot
IRJET- Automatic Gate Control and Parking System using AVR Controller

What's hot (20)

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

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

PDF
Density Based Traffic Lightcontrol System using Raspberry Pi
PDF
Automatic Intelligent Traffic Controller and Operation Mode
PDF
Vehicle Controlled with Smart Traffic Image Processing System and Accident De...
PDF
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
PDF
IRJET - Compactness based Traffic Signal Monitoring System
PDF
Inginious Trafalgar Contrivition System
PDF
Auto Traffic Management System
PDF
Raspberry Pi Traffic Light
PDF
Density Based Traffic signal system using microcontroller
PDF
IRJET- Density based Traffic Controller with Defaulter Identification using IoT
PDF
Density Based Traffic Control System and Emergency Vehicle Detection Using Ar...
PDF
Vehicle density sensor system to manage traffic
PDF
Vehicle density sensor system to manage traffic
PPSX
Digital Red Light Jump Checking System
PDF
IRJET- Speed Limit Alerting Device
PPTX
smart traffic light control system
PDF
IRJET- Automatic Traffic Control System based on the Vehicular Density
DOCX
Density based traffic light control
PDF
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
PDF
Traffic Density Control and Accident Indicator Using WSN
Density Based Traffic Lightcontrol System using Raspberry Pi
Automatic Intelligent Traffic Controller and Operation Mode
Vehicle Controlled with Smart Traffic Image Processing System and Accident De...
IRJET- Density-Based Real-Time Traffic Control System using Image Processing ...
IRJET - Compactness based Traffic Signal Monitoring System
Inginious Trafalgar Contrivition System
Auto Traffic Management System
Raspberry Pi Traffic Light
Density Based Traffic signal system using microcontroller
IRJET- Density based Traffic Controller with Defaulter Identification using IoT
Density Based Traffic Control System and Emergency Vehicle Detection Using Ar...
Vehicle density sensor system to manage traffic
Vehicle density sensor system to manage traffic
Digital Red Light Jump Checking System
IRJET- Speed Limit Alerting Device
smart traffic light control system
IRJET- Automatic Traffic Control System based on the Vehicular Density
Density based traffic light control
IRJET- Car Obstacle Detection and Pollution Level Tracing using Node MCU
Traffic Density Control and Accident Indicator Using WSN
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...

Recently uploaded (20)

PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPT
Project quality management in manufacturing
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
Well-logging-methods_new................
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
Sustainable Sites - Green Building Construction
PPTX
Geodesy 1.pptx...............................................
PPTX
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
PDF
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
PPTX
web development for engineering and engineering
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
PDF
Digital Logic Computer Design lecture notes
PPTX
Internet of Things (IOT) - A guide to understanding
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Project quality management in manufacturing
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Well-logging-methods_new................
Model Code of Practice - Construction Work - 21102022 .pdf
Embodied AI: Ushering in the Next Era of Intelligent Systems
Sustainable Sites - Green Building Construction
Geodesy 1.pptx...............................................
FINAL REVIEW FOR COPD DIANOSIS FOR PULMONARY DISEASE.pptx
BMEC211 - INTRODUCTION TO MECHATRONICS-1.pdf
web development for engineering and engineering
bas. eng. economics group 4 presentation 1.pptx
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Digital Logic Computer Design lecture notes
Internet of Things (IOT) - A guide to understanding
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Enhancing Cyber Defense Against Zero-Day Attacks using Ensemble Neural Networks

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