A final-year Diploma project aimed at enhancing public safety through the integration of smart technology into urban street lighting infrastructure.
Smart Pole is an innovative system that upgrades traditional streetlights with emergency response features. It is specifically designed to assist individuals in distressβparticularly women and childrenβby allowing them to send an immediate alert to nearby police stations, while simultaneously activating lights, sirens, and GPS location tracking.
To develop a real-time emergency alert and response system embedded into smart street poles, enhancing public safety using:
- Distress button activation
- Siren and LED light alerts
- Real-time GPS tracking
- GSM-based SMS alerts
- Arduino Uno (Microcontroller)
- GPS Module (SIM28ML or equivalent)
- GSM Module (SIM900A)
- Buzzer
- LED Light (Red)
- Emergency Button
- 12V 2A Adapter
- Data Transfer Cable
- Arduino IDE
- MS Word (Documentation)
- Web Browsers (Google Chrome, IE 6.0)
- Emergency button is pressed
- Buzzer and siren are activated
- LED light turns on to draw attention
- GPS module retrieves real-time location
- Message with coordinates is sent via GSM
- Police receive location alert and respond
/code/β Arduino source code/docs/β Project documentation/output-images/β Output Screenshots/Models/- Arduino Model Architecture Designs
- Immediate visual and audible alert
- Real-time location sharing with authorities
- Coded in embedded C using Arduino IDE
- Fully automated alert dispatch system
- Integration-ready for surveillance cameras
- Women's safety at night in urban areas
- Elderly in medical emergencies
- Children in distressful situations
- SMS Alert: βALERT HELP NEEDEDβ with GPS coordinates
- LED Indicator: Illuminates area during alert
- Buzzer/Siren: Audible signal for local awareness
if (digitalRead(btnPin) == HIGH) {
digitalWrite(ledPin, HIGH);
delay(3000);
digitalWrite(ledPin, LOW);
sgsm.listen();
sgsm.print("AT+CMGF=1\r");
delay(1000);
sgsm.print("AT+CMGS=\"+91XXXXXXXXXX\"\r");
delay(1000);
sgsm.print("https://www.google.com/maps/?q=");
sgsm.print(gpslat, 6);
sgsm.print(",");
sgsm.print(gpslon, 6);
delay(1000);
sgsm.write(0x1A);
}- Integration of camera modules with fisheye lenses
- Cloud-based data storage and analytics
- Mobile app interface for public use
- Solar power support for sustainability
A. Shashank & Team
Diploma in Computer Engineering
Government Polytechnic, Warangal (2021β2024)
This project is licensed under the MIT License β see the LICENSE file for details.