IOT Smart Parking Using RFID With Android App

2,720.00

Delivered All over Pakistan 🇵🇰

The IoT Smart Parking System is an unassembled project that uses RFID and an Android app for automated access, real-time parking slot detection, and smart parking management.

Description

 

Introduction to Smart IoT Parking System

The rapid increase in vehicles has created serious parking challenges, particularly in urban areas. However, parking spaces and road infrastructure have not expanded at the same rate. To address this issue, the Smart IoT Parking System using RFID and an Android application provides an automated parking solution. The system combines RFID-based access control, real-time slot monitoring, and mobile connectivity. As a result, it reduces manual effort, saves time, and makes parking more convenient.

 

Key Features

The Smart IoT Parking System includes several features that improve parking efficiency. First, it provides automatic access with minimal human involvement. An RFID scanner verifies the user’s identity and account balance before allowing entry. In addition, automatic gate barriers manage vehicle entry and exit smoothly.Meanwhile, IR sensors monitor individual parking slots and detect whether they are occupied or available. The Android application also allows users to check parking availability in real time. Furthermore, the system improves security by allowing access only to valid RFID cards with sufficient balance.

 

Specifications of Smart IoT Parking System

A microcontroller acts as the main processing unit of the system. It receives signals from the RFID scanner and IR sensors to verify users and monitor parking slots. Meanwhile, the ESP8266 Wi-Fi module connects the system to the IoT platform and enables real-time data communication.The IoT Gecko server processes the collected information and displays parking data through the Android application. In addition, DC motors operate the entry and exit barriers. Each parking space contains an IR sensor, which helps provide accurate information about available and occupied slots.

Components

  • Atmega Microcontroller
  • DC Motor
  • LCD Display
  • RFID Scanner
  • ESP8266 Wi-Fi Module
  • IR Sensors
  • Resistors
  • Capacitors
  • Buttons and Switches
  • Electrical Wiring
  • PCB Board
  • Diodes and Transistors
  • Connectors
  • Screws and Fittings

 

Significance

The Smart IoT Parking System can improve parking management in busy urban areas. By combining RFID access control with IoT-based slot monitoring, it helps drivers find available spaces more efficiently. Moreover, automated monitoring reduces the need for continuous staff supervision and supports better use of parking capacity.At the same time, RFID authentication strengthens parking security by restricting access to authorized users. The Android application provides instant parking information, allowing users to check availability before reaching the parking area. Therefore, the system can reduce unnecessary searching, improve convenience, and support more efficient parking management.

 

Conclusion of Smart IoT Parking System

In conclusion, the Smart IoT Parking System using RFID and an Android application provides a secure and efficient approach to modern parking management. It automates access control, monitors parking slots, and delivers real-time information through mobile connectivity. Furthermore, the system reduces manual work while improving user convenience and security. Overall, this IoT-based solution demonstrates how connected technologies can address everyday parking challenges and support smarter urban infrastructure.

 

Function: Four IR sensors monitor the parking slots. The LCD displays the number of free spaces. An SG90 servo represents the barrier gate and a buzzer indicates a full parking area.

Connections

ComponentArduino Uno Pin
Slot 1 IR OUTD2
Slot 2 IR OUTD3
Slot 3 IR OUTD4
Slot 4 IR OUTD5
Servo SignalD6
Buzzer +D7
LCD RSD8
LCD END9
LCD D4D10
LCD D5D11
LCD D6D12
LCD D7D13

IR sensor VCC → 5V and GND → GND. SG90: red → 5V, brown/black → GND, orange/yellow → D6. A dedicated entry IR sensor is recommended for a truly automatic barrier; the listed kit does not include one.

#include <LiquidCrystal.h>
#include <Servo.h>

LiquidCrystal lcd(8, 9, 10, 11, 12, 13);
Servo barrierServo;

#define SLOT1 D2
#define SLOT2 D3
#define SLOT3 D4
#define SLOT4 D5

#define SERVO_PIN D6
#define BUZZER_PIN D7

#define BARRIER_CLOSED 0
#define BARRIER_OPEN 90

void setup() {
Serial.begin(9600);

pinMode(SLOT1, INPUT);
pinMode(SLOT2, INPUT);
pinMode(SLOT3, INPUT);
pinMode(SLOT4, INPUT);
pinMode(BUZZER_PIN, OUTPUT);

barrierServo.attach(SERVO_PIN);
barrierServo.write(BARRIER_CLOSED);

lcd.begin(16, 2);
lcd.print(“Smart Parking”);
lcd.setCursor(0, 1);
lcd.print(“System Ready”);

delay(2000);
lcd.clear();
}

void loop() {
bool occupied1 = digitalRead(SLOT1) == LOW;
bool occupied2 = digitalRead(SLOT2) == LOW;
bool occupied3 = digitalRead(SLOT3) == LOW;
bool occupied4 = digitalRead(SLOT4) == LOW;

int occupied = occupied1 + occupied2 + occupied3 + occupied4;
int available = 4 – occupied;

lcd.setCursor(0, 0);
lcd.print(“Free: “);
lcd.print(available);
lcd.print(”   “);

lcd.setCursor(0, 1);

if (available == 0) {
lcd.print(“PARKING FULL   “);
barrierServo.write(BARRIER_CLOSED);

tone(BUZZER_PIN, 1000);
delay(200);
noTone(BUZZER_PIN);
} else {
lcd.print(“S1:”);
lcd.print(occupied1 ? “X” : “O”);
lcd.print(” S2:”);
lcd.print(occupied2 ? “X” : “O”);
lcd.print(” “);

barrierServo.write(BARRIER_OPEN);
noTone(BUZZER_PIN);
}

Serial.print(“S1: “);
Serial.print(occupied1 ? “Occupied” : “Empty”);
Serial.print(” | S2: “);
Serial.print(occupied2 ? “Occupied” : “Empty”);
Serial.print(” | S3: “);
Serial.print(occupied3 ? “Occupied” : “Empty”);
Serial.print(” | S4: “);
Serial.print(occupied4 ? “Occupied” : “Empty”);
Serial.print(” | Free: “);
Serial.println(available);

delay(500);
}

 

Visit our website Ampflick  for more products.

You can also visit our Instagram and Facebook for latest update

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.