Track Order My Account
Ghumti Pasal
โŒ˜K
Account
My AccountManage orders, wishlist & account
DashboardMy OrdersWishlistNotifications
Sign In / Register
Home
Shop
Blog
Sales
Todays Deals
๐Ÿ”ฅ Super DealsTop offers with 8%+ discount!
YF-S401 Water Flow Sensor Switch Meter Flowmeter Coffee Dispenser Counter Fluid Control 0.3-6L/minโˆ’16%
YF-S401 Water Flow Sensor Switch Meter Flowmeter Coffee Dispenser Counter Fluid Control 0.3-6L/min
NPRย 546NPRย 650
80mm 3-blades propellers for DIY Models RC boat models plastics props fit for 2mm shaft toy spare partsโˆ’16%
80mm 3-blades propellers for DIY Models RC boat models plastics props fit for 2mm shaft toy spare parts
NPRย 42NPRย 50
WH148 B1K 20MM Shaftpotentiometer 3pinโˆ’16%
WH148 B1K 20MM Shaftpotentiometer 3pin
NPRย 34NPRย 40
2.4 inch TFT touch LCD Moduleโˆ’10%
2.4 inch TFT touch LCD Module
NPRย 1,080NPRย 1,200
View All Deals (52 items) โ†’
Account
Ghumti Pasal

Ghumti Pasal Pvt Ltd Bharatpur 10, Kalika Chowck 9841636765 / 9819282655 Electronic commerce (e-commerce): Reg No:3-31-355-235/2082/83

Join our newsletter

New arrivals, offers and restock alerts โ€” straight to your inbox.

Shop

All ProductsBlog

Company

AboutContact

Help

Shipping & ReturnsPrivacy Policy
info@ghumtipasal.com.np9841636765Bharatpur 10
HomeShopSaleCartAccount
โ† Back to All Maker Guides
๐Ÿ› ๏ธ MAKER GUIDEJul 07, 2026โ€ขโฑ๏ธ 3 min readโ€ข๐Ÿ‡ณ๐Ÿ‡ต Tested in Nepal

Density-Based Smart Traffic Light System with Emergency Vehicle Priority

Reduce traffic congestion in Kathmandu intersections with adaptive ultrasonic vehicle queue sensing, LED traffic modules, and RFID ambulance clearance from Ghumti Pasal.

โš™๏ธSTEAM & IOT GUIDE

Density-Based Smart Traffic Light System with Emergency Vehicle Priority

Ghumti Pasalโ€ขEngineering Project
๐Ÿ› ๏ธ BILL OF MATERIALS (BOM)

Required Hardware & Component Checklist

Curated components verified for this project. Check the items you need, adjust quantities, and add straight to cart:

Estimated Total (5/5 items):
NPRย 2,840
โœ“ Cash on Delivery across Nepal
All parts selected
1
NPRย 1,300
1
NPRย 100
1
NPRย 1,200
1
NPRย 40
1
NPRย 200
๐Ÿ’ฌ Order Kit on WhatsApp
Browse All Store Products โ†’

Density-Based Smart Traffic Light System with Emergency Vehicle Priority

Educational Notes

This project is designed to be accessible to students from Class 4 to Masters level, with complexity scalable to match different age groups and skill levels.

Learning Objectives:

  • Understand basic electronics and circuitry principles
  • Learn sensor applications and data collection techniques
  • Develop problem-solving skills through hands-on building and troubleshooting
  • Apply programming concepts to control hardware and process data
  • Connect projects to real-world Nepalese contexts and challenges

Adaptability:

  • For younger students (Class 4-8): Focus on assembling pre-built circuits, observing results, and understanding basic concepts
  • For intermediate students (Class 9-12): Modify code, experiment with parameters, and explore underlying principles
  • For advanced students (Undergraduate/Masters): Optimize designs, add features, conduct research extensions, and analyze performance

Safety Note: Always supervise younger students when working with electricity, heat, or moving parts.

Create a smart intersection model that dynamically allocates green light timing and grants override to ambulances via RC522 RFID.


Hardware Bill of Materials:

  • Microcontroller: UNO R3 ATMEGA328P-PU Development Board with 30cm cable
  • Indicators: LED 5mm Red, Green, Yellow Pack
  • RFID Reader: HS-S62-L RC522 NFC RFID Reader Writer Module 13.56MHz
  • Alarm & Power: Active Buzzer + 9v 1A Power Supply Adapter

Circuit Pinout & Wiring Connections:

Component / Sensor Pin Arduino Uno Pin Function / Description
Traffic Lane Red / Yellow / Green Pin D2, D3, D4 Standard Traffic Signal Control
Priority Lane Red / Yellow / Green Pin D5, D6, D7 Intersecting Traffic Signal Control
RC522 SDA / SCK / MOSI / MISO Pin D10, D13, D11, D12 SPI RFID Ambulance Receiver
RC522 3.3V / GND 3.3V / GND Reader Power
Active Buzzer (+) Pin D8 Emergency Ambulance Clearance Chime

Firmware Source Code (Arduino Mega 2560 C++)

#include <Wire.h>
#include <EEPROM.h>
#include <SPI.h>
#include <MFRC522.h>

#define SS_PIN 5
#define RST_PIN 22
MFRC522 rfid(SS_PIN, RST_PIN);

const char* ssid = "GhumtiPasal_WiFi";
const char* pass = "NepalMakers2026";

void setup() {
  Serial.begin(9600);
  SPI.begin();
  rfid.PCD_Init();
  Serial.println("RFID Contactless Reader Ready. Tap Card...");
  
}

void loop() {
  if (!rfid.PICC_IsNewCardPresent() || !rfid.PICC_ReadCardSerial()) {
    delay(50);
    return;
  }

  String cardUID = "";
  for (byte i = 0; i < rfid.uid.size; i++) {
    cardUID += String(rfid.uid.uidByte[i] < 0x10 ? "0" : "");
    cardUID += String(rfid.uid.uidByte[i], HEX);
  }
  cardUID.toUpperCase();

  Serial.println("Scanned Card UID: " + cardUID);
  Serial.println("Access Granted! Syncing record with database...");
  rfid.PICC_HaltA();
  rfid.PCD_StopCrypto1();
  delay(2000);
}
๐Ÿ“ฃ Share this Project Guide:๐Ÿ’ฌ WhatsAppFacebook๐• / Twitter
โ† Previous Guide
Hand Gesture Motion Controlled Robot Arm using Accelerometer & NRF24L01
Next Guide โ†’
Smart Keyless Door Access Control System with RC522 RFID & 12V Solenoid

More Practical STEAM & IoT Guides

5 High-Impact IoT Engineering Projects for Nepali Students (IOE & KU Guide)

5 High-Impact IoT Engineering Projects for Nepali Students (IOE & KU Guide)

IoT Weather Reporting System with Arduino & Raspberry Pi LoRa Gateway

IoT Weather Reporting System with Arduino & Raspberry Pi LoRa Gateway

IoT IV Bag Monitoring & Alert System for Healthcare Facilities

IoT IV Bag Monitoring & Alert System for Healthcare Facilities