SlideShare a Scribd company logo
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 107
ANDROID APPLICATION FOR S-PARK SYSTEM
Gaurav Kate, Kaustubh Dave1
, Saprem Kulkarni2
, R. B. Dhumale3
Department of E & TC Engg., Sinhgad College of Engineering, Pune, India.
Abstract
Finding a parking space in most metropolitan areas, during the rush hours, is difficult for drivers. The problem arises from not
knowing where is the empty space; even if it is known, many vehicles may pursue very limited parking spaces to cause serious
traffic congestion. In this project, a prototype of smart parking (S-Park) system is designed and implemented that allows drivers
to effectively find and reserve the empty parking spaces using an android application connected to Internet. By periodically
polling the parking status from the sensor networks deployed in parking lots, the reservation status is affected by the change of
physical parking status. The drivers are allowed to access the server on their Android smartphones. The proposed smart parking
policy has the potential to solve the problems of parking systems, as well as reduce traffic congestion caused by parking searching
thus making the system two-way efficient, that is, cost wise and time wise.
Key Words: Smart parking system, Android based application, Embedded server, One time password.
--------------------------------------------------------------------***----------------------------------------------------------------------
1. INTRODUCTION
Searching for the parking space in metropolitan areas is now
becoming time consuming. Due to mismanagement in the
parking space, it is difficult for drivers to find the parking
slot which results more traffic congestion and air pollution
by constantly wandering in certain area for available parking
space. Many smart parking systems are trying to reduce
such traffic congestion and improve convenience for drivers.
There are some currently working parking guidance systems
which obtain available parking space information from
deployed sensors and provide it to drivers[5]. However,
these systems are not helpful to guide the drivers to find the
proper empty parking slot in the parking space. When
available spaces are limited, and if more drivers are heading
towards these spaces, it will cause severe congestion. Even
though driver reaches the parking area, there are certain
problems such as blind search [3] in finding the empty slots.
It causes not only wastage of money but wastage of fuel
also. To solve the this problem, techniques like buffered
parking information sharing(BPIS) [3] are used. But
determining the number of buffered spaces is difficult. If
buffered spaces are low, there is problem of “multiple-cars-
chase-single-space”. If buffer is large then efficient
utilizations of parking slots is very low.
There are some systems like smart parking service based on
wireless sensor networks [1] which uses wireless sensors to
effectively find the available parking space. But to use this
system, additional hardware needs to be installed in the car
which is not feasible. New Smart Parking System Based on
Resource Allocation and Reservations [2] which has facility
to reserve the parking slot for fixed amount of time.
However, if the driver does not follow the timings as per
reservation it causes inconvenience for others.
The solution proposed in this project works as when user
wants to park car at the parking, the user uses the Android
application to check for available parking slots. The
availability is updated by the server when the availability is
checked by the user. If the slot is available, the user then
enters the payment mode and payment details. These details
are stored on the server and an OTP (One Time Password) is
generated, which is given to the user after payment is
verified. This OTP is then valid for a certain amount of time
after which it expires. The user when reaches the parking, is
required to enter the valid OTP and based on the current
availability of the parking slots, the nearest available
parking slot is allocated.
The proposed solution provides an efficient method for
providing parking space to the user as they are allotted
specific and unique OTP (One Time Password) on
successful booking of parking slots. This eliminates the need
of human intervention at the parking lot, as the user simply
needs to enter the OTP at the console provided at the
entrance of the parking lot. Also the provided OTP remains
valid for a pre-defined amount of time which eliminates the
problem of the user booking the space and not showing up
which can result in under utilization of the parking lot.
2. METHDOLOGY
In the system, the server periodically sends signals to the
sensor controller which checks for the availability using the
proximity sensors installed at each of the parking spaces.
Based on the statuses of these proximity sensors, the
occupancy and availability is updated on the server and this
status is then shown to the user whenever availability is
checked on the android application. Now, when the user
wants to book a parking space, and a space is available,
payment method is chosen and payment details are entered
by the user. On authentication of the payment details, a
space is booked on the server and a One Time Password
(OTP) is generated which is a unique identification for the
user. That OTP is stored at both places, that is, at the user
side (android application) and server side. Now when the
user reaches the parking, the OTP is required to be entered
on the console.
This entered OTP is then verified with respect to correctness
as well as time limit with the server and indicated to the user
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 108
appropriately. On verification, the server checks for the
nearest available parking space and allocates it to the user
and displays the allotted slot’s location on the display. On
getting the location, the user parks the car and the
corresponding occupancy status is updated on the server
using the proximity sensors.
As seen from the Figure 1, the central controlling unit of the
system is the server which performs multiple functions such
as interfacing with the console, that is, display and keypad,
connecting to the sensor controller to update the status of the
parking spaces, that is, whether empty or occupied and lastly
as a server so as to receive requests from the client side, that
is, smartphone connected to the network to check
availability as well as book parking spaces. It also checks
for the correctness of the entered OTP and gives the
corresponding indication. The sensors, with the help of
sensor controller, at each of the parking slots check for the
occupancy of their parking spaces and give the
corresponding status to the server which then updates its
database. The smartphone then on the user’s side is used to
check the availability status of the parking spaces at a
particular parking lot and if available book a space. Each
slot is provided with ultrasonic sensor with 8-bit MCU(
microcontroller unit) and each MCU is connected to the
embedded server via one wire protocol having TDMA type
of multiplexing [4].
3. EXPERIMENTATION
Fig. 1:Block diagram of proposed S-Park system
Ultrasonic sensor (HC-SR 04) is interfaced with the sensor
controller as shown in the above Figure 2. The ultrasonic
sensor works on the principle of SONAR(Sound Navigation
and Ranging) i.e. sending a pulse of ultrasonic waves of
frequency 44 kHz when a signal of pulse width more than
10 ms is applied at the trigger input of the sensor. On
occurrence of an obstacle, the ultrasonic waves get reflected
and are sensed which in turn generate a pulse at the Echo
pin of the ultrasonic sensor. The width of this pulse at the
echo pin is measured in order to find the distance. The
algorithm to develop android application is given below.
Fig. 2. Ultrasonic sensor interfacing
Algorithm:
1. Create Main Activity.
2. Create Check Availability Activity and download
the updated availability file from the server and if available
go to next screen.
3. Extract the available slots from the downloaded file
and display on the screen.
4. Create Payment options Activity and select
payment mode and go to next screen.
5. Create Payment details activity and accept details.
6. Generate OTP and send user’s name and OTP to
the server.
4. RESULTS
Some results of proposed systems are shown below to
validate the proposed S-Park system.
Development of Android Application:
The Android Application needs to connect to the network,
and then request server to check for the availability and thus
download available spaces information from the server as
shown in Figure 3.
Fig. 3. Application screen test for various versions of android
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 109
After opening this Android application, next step is
checking availability of parking spaces on application as
shown in Figure 4. The file is downloaded containing the
current availability of the parking slots using
HttpURLConnection. If the available spaces are zero then,
the “Book Now” button is freezes as shown in Figure 5.
Fig. 4:Checking availability of parking spaces on application
Then on the BookSpace screen, the payment mode is
selected by the user, and followed by “Pay Now” button as
shown in Figure 6. User has to select either of the payment
methods to continue. This is followed by Payment Activity
wherein the user needs to enter the payment details which are
then sent to the server as shown in Figure 7. The final screen
in the application is the OTP generation screen where on
successful payment an OTP (One Time Password) is
generated which is sent to the server along with the user
details. The user then exits the App using the “Exit” button
as shown in Figure 8.
Fig.5:Checking availability of parking spaces on application
Fig. 6. Payment mode
The future work is to provide condition monitoring of
electronics components used in system to improve
performance without fail [6]-[11]. Also implement system
based on solar energy as proposed in [12]-[13].
5. CONCLUSION
Finding a parking these days is a difficult task and generally
results in traffic congestion and loss of time and fuel. This
project aims at reducing such difficulties of the drivers by
providing a reservation-based parking policy, thus
alleviating their problems and making the process of finding
a parking space easier. This project provides a solution for
reservation based parking by keeping a time limit for the
cars to arrive to reserved parking. This also avoids under
utilization of the parking space. This project also
implements the online reservation and payment facility so
that there is assured parking available when driver reaches
the parking. This system also provides online information of
whether the parking if full or not. The Android app
developed is user friendly as well as found to be working on
different android phones with different screen resolutions.
The app does not require any other features except internet
connectivity to run. This system uses a wired network of
sensors to connect to the embedded server this reduces
overall cost of the system. It eliminates the need of
additional hardware to be installed in cars. Ultrasonic
sensors are used in this project to detect the cars in each slot
this provides accurate as well as cost effective method to
detect occupancy of the slot. The microcontroller based
interface between server and sensors make the system
reliable, cost effective, and extendible if number of slots
needs to be increased after installation. Since number of cars
is increasing at a fast rate but parking space does not
increase to such an extent. There is need of such systems
that require very less infrastructure for existing parking.
IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308
_______________________________________________________________________________________
Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 110
Fig. 7 : Functions of android application
Fig. 8 : Functions of android application
REFERENCES
[1] Jihoon Yang, Jorge Portilla and Teresa Riesgo, “Smart
Parking Service based on Wireless Sensor Networks”,
IEEE Magazine, Feb 2012, pp. 6029-6033.
[2] Yanfeng Geng, “New Smart Parking System Based on
ResourceAllocation and Reservations”, IEEE
Transaction on intelligent transportation systems, Vol.
14, Issue No. 3, Sept 2013, pp. 1129-1138.
[3] Hongwei Wang and Wenbo He, “A Reservation-based
Smart Parking System”, The First International
Workshop on Cyber-Physical Networking Systems,
University of Nebraska-Lincoln, USA, Mar 2011, pp.
701-705.
[4] Behrouz Forouzan, “Data Communications and
Networking”, 4th edition, McGrawHill publications,
India 2012, pp. 55-94.
[5] Willie D. Jones ,”Parking 2.0 meters go high tech”,
IEEE Spectrum, December 2006, pp. 20.
[6] R Khandebharad, R. B. Dhumale, S. S. Lokhande,
“Electrolytic Capacitor Online Failure Detection and
Life Prediction Methodology”, Int. J. Research in
Engg. And Techn., vol.4, Iss. 2, pp.636-641, Feb. 2015.
[7] R Khandebharad, R. B. Dhumale, S. S. Lokhande,
“Online Failure Prediction of the Aluminum
Electrolytic Capacitor”, Int. J. Science and Research,
vol.4, Iss. 6, pp.2099-2102, June. 2015.
[8] R. B. Dhumale, S. D. Lokhande, N. D. Thombare, M.
P. Ghatule, “Fault Detection and Diagnosis of High
Speed Switching Devices in Power Converter”, Int. J.
Research in Engg. And Techn., vol.4, Iss. 2, pp.636-
641, Feb. 2015.
[9] M. R. Ubale, R. B. Dhumale, V. V. Dixit, S. D.
Lokhande,“ Open Switch Fault Diagnosis Method in
Three Phase Inverter”, in Proc. National Conference on
Latest Trends in Electronics and Telecommunication,
Sinhgad College of engineering,Pune, Oct. 2013, pp-
28.
[10]M. R Ubale, R. B. Dhumale, S. D. Lokhande, “Method
of Open Switch Fault Detection in Three Phase Inverter
using Artificial Neural Network”, Int. J. Research in
Science and Advance Technology, Vol. 3, Iss. 3, PP
78-82, June 2014.
[11]Lalit Patil, R. B. Dhumale, S. D. Lokhande, “Fault
Detection and Diagnosis Technique gor Power Inverter
using Discrete Wavelet Transform”, Int. J. Electronics
Circuits and systems, Vol. 3, Iss. 2, pp 174-178, June
2014.
[12]C. Ugale , R. B. Dhumale , V. V. Dixit, “ DC-DC
Converter for Solar Energy Harvesting using PID
Controller”, Int. J. Engineering Applications and
Technology, Vol. 1, Iss. 13, pp 132-136, July 2105.
[13]C. Ugale , R. B. Dhumale , V. V. Dixit, “DC-DC
Converter using Fuzzy Logic Controller”, Int. J.
Research in Engg. and Techn., vol.4, Iss.07, pp.490-
696, July. 2015.

More Related Content

What's hot

Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network
Sovan Rout
 
Smart Car Parking System
Smart Car Parking SystemSmart Car Parking System
Smart Car Parking System
IRJET Journal
 
Parking Management System
Parking Management SystemParking Management System
Parking Management System
IJMER
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoT
IRJET Journal
 
Smart and efficient system for the detection of wrong cars parking
Smart and efficient system for the detection of wrong cars parkingSmart and efficient system for the detection of wrong cars parking
Smart and efficient system for the detection of wrong cars parking
journalBEEI
 
A Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry piA Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry pi
Azharo7
 
A Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-CodeA Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-Code
IRJET Journal
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOT
Saipandu143
 
IRJET- Smart Parking System
IRJET-  	  Smart Parking SystemIRJET-  	  Smart Parking System
IRJET- Smart Parking System
IRJET Journal
 
NFC based parking payment system
NFC based parking payment systemNFC based parking payment system
NFC based parking payment system
IJERA Editor
 
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGAVlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
VLSICS Design
 
H017545662
H017545662H017545662
H017545662
IOSR Journals
 
IRJET- Smart Bus for Smart City using IoT
IRJET-  	  Smart Bus for Smart City using IoTIRJET-  	  Smart Bus for Smart City using IoT
IRJET- Smart Bus for Smart City using IoT
IRJET Journal
 
Online car parking reservation system 9160262550 dinesh
Online car parking reservation system   9160262550 dineshOnline car parking reservation system   9160262550 dinesh
Online car parking reservation system 9160262550 dinesh
Dinesh Nalluri
 
Smart Car Parking system using GSM Technology
Smart Car Parking system using GSM TechnologySmart Car Parking system using GSM Technology
Smart Car Parking system using GSM Technology
dbpublications
 
Android Suburban Railway Ticketing
Android Suburban Railway TicketingAndroid Suburban Railway Ticketing
Android Suburban Railway Ticketing
IRJET Journal
 
IRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
IRJET - An E-Ticket Application with Location Tracking for Public Transport BusIRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
IRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
IRJET Journal
 
Gps Tracker with RFID | School Security |
Gps Tracker with RFID | School Security | Gps Tracker with RFID | School Security |
Gps Tracker with RFID | School Security |
techlead-india
 
Ej31898902
Ej31898902Ej31898902
Ej31898902
IJERA Editor
 
Conceptualization of IoT Powered Parking System
Conceptualization of IoT Powered Parking SystemConceptualization of IoT Powered Parking System
Conceptualization of IoT Powered Parking System
IJERA Editor
 

What's hot (20)

Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network Smart Parking System Based on embedded System and Sensor Network
Smart Parking System Based on embedded System and Sensor Network
 
Smart Car Parking System
Smart Car Parking SystemSmart Car Parking System
Smart Car Parking System
 
Parking Management System
Parking Management SystemParking Management System
Parking Management System
 
IRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoTIRJET- Smart Parking System using IoT
IRJET- Smart Parking System using IoT
 
Smart and efficient system for the detection of wrong cars parking
Smart and efficient system for the detection of wrong cars parkingSmart and efficient system for the detection of wrong cars parking
Smart and efficient system for the detection of wrong cars parking
 
A Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry piA Smart Parking System using Raspberry pi
A Smart Parking System using Raspberry pi
 
A Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-CodeA Review on Smart Bus Ticketing System using QR-Code
A Review on Smart Bus Ticketing System using QR-Code
 
SMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOTSMART CAR-PARKING SYSTEM USING IOT
SMART CAR-PARKING SYSTEM USING IOT
 
IRJET- Smart Parking System
IRJET-  	  Smart Parking SystemIRJET-  	  Smart Parking System
IRJET- Smart Parking System
 
NFC based parking payment system
NFC based parking payment systemNFC based parking payment system
NFC based parking payment system
 
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGAVlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
Vlsics040307DESIGN AND IMPLEMENTATION OF CAR PARKING SYSTEM ON FPGA
 
H017545662
H017545662H017545662
H017545662
 
IRJET- Smart Bus for Smart City using IoT
IRJET-  	  Smart Bus for Smart City using IoTIRJET-  	  Smart Bus for Smart City using IoT
IRJET- Smart Bus for Smart City using IoT
 
Online car parking reservation system 9160262550 dinesh
Online car parking reservation system   9160262550 dineshOnline car parking reservation system   9160262550 dinesh
Online car parking reservation system 9160262550 dinesh
 
Smart Car Parking system using GSM Technology
Smart Car Parking system using GSM TechnologySmart Car Parking system using GSM Technology
Smart Car Parking system using GSM Technology
 
Android Suburban Railway Ticketing
Android Suburban Railway TicketingAndroid Suburban Railway Ticketing
Android Suburban Railway Ticketing
 
IRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
IRJET - An E-Ticket Application with Location Tracking for Public Transport BusIRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
IRJET - An E-Ticket Application with Location Tracking for Public Transport Bus
 
Gps Tracker with RFID | School Security |
Gps Tracker with RFID | School Security | Gps Tracker with RFID | School Security |
Gps Tracker with RFID | School Security |
 
Ej31898902
Ej31898902Ej31898902
Ej31898902
 
Conceptualization of IoT Powered Parking System
Conceptualization of IoT Powered Parking SystemConceptualization of IoT Powered Parking System
Conceptualization of IoT Powered Parking System
 

Similar to Android application for s park system

IRJET- Smart Parking System using IoT
IRJET-  	  Smart Parking System using IoTIRJET-  	  Smart Parking System using IoT
IRJET- Smart Parking System using IoT
IRJET Journal
 
Paper id 252014138
Paper id 252014138Paper id 252014138
Paper id 252014138IJRAT
 
IRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android ApplicationIRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android Application
IRJET Journal
 
Real Time Parking Information Provider System on Android Phones
Real Time Parking Information Provider System on Android PhonesReal Time Parking Information Provider System on Android Phones
Real Time Parking Information Provider System on Android Phones
International Journal of Computer and Communication System Engineering
 
IRJET- A Study on Smart Parking System using IOT for Indian Malls
IRJET- A Study on Smart Parking System using IOT for Indian MallsIRJET- A Study on Smart Parking System using IOT for Indian Malls
IRJET- A Study on Smart Parking System using IOT for Indian Malls
IRJET Journal
 
IRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking SystemIRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking System
IRJET Journal
 
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLERAN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
IRJET Journal
 
akash seminar 2.pdf
akash seminar 2.pdfakash seminar 2.pdf
akash seminar 2.pdf
Akash297017
 
Parking Slot Availability Check and Booking System over IOT
Parking Slot Availability Check and Booking System over IOTParking Slot Availability Check and Booking System over IOT
Parking Slot Availability Check and Booking System over IOT
Associate Professor in VSB Coimbatore
 
C010121418
C010121418C010121418
C010121418
IOSR Journals
 
Automatic Smart Car Parking System Using Iot And Python
Automatic Smart Car Parking System Using Iot And PythonAutomatic Smart Car Parking System Using Iot And Python
Automatic Smart Car Parking System Using Iot And Python
Mary Calkins
 
Advanced Vehicle Tracking system using GSM/GPRS and GPS
Advanced Vehicle Tracking system using GSM/GPRS and GPSAdvanced Vehicle Tracking system using GSM/GPRS and GPS
Advanced Vehicle Tracking system using GSM/GPRS and GPS
rahulmonikasharma
 
The Smart Parking Management System
The Smart Parking Management SystemThe Smart Parking Management System
The Smart Parking Management System
AIRCC Publishing Corporation
 
The Smart Parking Management System - IJCSIT
The Smart Parking Management System  - IJCSITThe Smart Parking Management System  - IJCSIT
The Smart Parking Management System - IJCSIT
AIRCC Publishing Corporation
 
Smart Parking System Using LoRa
Smart Parking System Using LoRaSmart Parking System Using LoRa
Smart Parking System Using LoRa
IRJET Journal
 
Mobile Application Based Slot Determination In A Parking Lot
Mobile Application Based Slot Determination In A Parking LotMobile Application Based Slot Determination In A Parking Lot
Mobile Application Based Slot Determination In A Parking Lot
IRJET Journal
 
parking system
parking systemparking system
parking system
Rohit566499
 
IRJET- Modern E-Parking System for Smart Cities
IRJET-  	  Modern E-Parking System for Smart CitiesIRJET-  	  Modern E-Parking System for Smart Cities
IRJET- Modern E-Parking System for Smart Cities
IRJET Journal
 
Tugas Paper Teknik Penulisan Karya Ilmiah
Tugas Paper Teknik Penulisan Karya IlmiahTugas Paper Teknik Penulisan Karya Ilmiah
Tugas Paper Teknik Penulisan Karya Ilmiah
SyahditaLika
 
Smart parking system
Smart parking systemSmart parking system
Smart parking system
EditorIJAERD
 

Similar to Android application for s park system (20)

IRJET- Smart Parking System using IoT
IRJET-  	  Smart Parking System using IoTIRJET-  	  Smart Parking System using IoT
IRJET- Smart Parking System using IoT
 
Paper id 252014138
Paper id 252014138Paper id 252014138
Paper id 252014138
 
IRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android ApplicationIRJET- Intelligent Car Parking System commanded by Android Application
IRJET- Intelligent Car Parking System commanded by Android Application
 
Real Time Parking Information Provider System on Android Phones
Real Time Parking Information Provider System on Android PhonesReal Time Parking Information Provider System on Android Phones
Real Time Parking Information Provider System on Android Phones
 
IRJET- A Study on Smart Parking System using IOT for Indian Malls
IRJET- A Study on Smart Parking System using IOT for Indian MallsIRJET- A Study on Smart Parking System using IOT for Indian Malls
IRJET- A Study on Smart Parking System using IOT for Indian Malls
 
IRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking SystemIRJET- IoT based Sensor Enabled Smart Parking System
IRJET- IoT based Sensor Enabled Smart Parking System
 
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLERAN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
AN AUTOMATED CAR PARKING SYSTEM BY USING PROGAMMABLE LOGIC CONTROLLER
 
akash seminar 2.pdf
akash seminar 2.pdfakash seminar 2.pdf
akash seminar 2.pdf
 
Parking Slot Availability Check and Booking System over IOT
Parking Slot Availability Check and Booking System over IOTParking Slot Availability Check and Booking System over IOT
Parking Slot Availability Check and Booking System over IOT
 
C010121418
C010121418C010121418
C010121418
 
Automatic Smart Car Parking System Using Iot And Python
Automatic Smart Car Parking System Using Iot And PythonAutomatic Smart Car Parking System Using Iot And Python
Automatic Smart Car Parking System Using Iot And Python
 
Advanced Vehicle Tracking system using GSM/GPRS and GPS
Advanced Vehicle Tracking system using GSM/GPRS and GPSAdvanced Vehicle Tracking system using GSM/GPRS and GPS
Advanced Vehicle Tracking system using GSM/GPRS and GPS
 
The Smart Parking Management System
The Smart Parking Management SystemThe Smart Parking Management System
The Smart Parking Management System
 
The Smart Parking Management System - IJCSIT
The Smart Parking Management System  - IJCSITThe Smart Parking Management System  - IJCSIT
The Smart Parking Management System - IJCSIT
 
Smart Parking System Using LoRa
Smart Parking System Using LoRaSmart Parking System Using LoRa
Smart Parking System Using LoRa
 
Mobile Application Based Slot Determination In A Parking Lot
Mobile Application Based Slot Determination In A Parking LotMobile Application Based Slot Determination In A Parking Lot
Mobile Application Based Slot Determination In A Parking Lot
 
parking system
parking systemparking system
parking system
 
IRJET- Modern E-Parking System for Smart Cities
IRJET-  	  Modern E-Parking System for Smart CitiesIRJET-  	  Modern E-Parking System for Smart Cities
IRJET- Modern E-Parking System for Smart Cities
 
Tugas Paper Teknik Penulisan Karya Ilmiah
Tugas Paper Teknik Penulisan Karya IlmiahTugas Paper Teknik Penulisan Karya Ilmiah
Tugas Paper Teknik Penulisan Karya Ilmiah
 
Smart parking system
Smart parking systemSmart parking system
Smart parking system
 

More from eSAT Journals

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
eSAT Journals
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
eSAT Journals
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
eSAT Journals
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
eSAT Journals
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
eSAT Journals
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
eSAT Journals
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
eSAT Journals
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
eSAT Journals
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
eSAT Journals
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
eSAT Journals
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
eSAT Journals
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
eSAT Journals
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
eSAT Journals
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
eSAT Journals
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
eSAT Journals
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
eSAT Journals
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
eSAT Journals
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
eSAT Journals
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
eSAT Journals
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
eSAT Journals
 

More from eSAT Journals (20)

Mechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavementsMechanical properties of hybrid fiber reinforced concrete for pavements
Mechanical properties of hybrid fiber reinforced concrete for pavements
 
Material management in construction – a case study
Material management in construction – a case studyMaterial management in construction – a case study
Material management in construction – a case study
 
Managing drought short term strategies in semi arid regions a case study
Managing drought    short term strategies in semi arid regions  a case studyManaging drought    short term strategies in semi arid regions  a case study
Managing drought short term strategies in semi arid regions a case study
 
Life cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangaloreLife cycle cost analysis of overlay for an urban road in bangalore
Life cycle cost analysis of overlay for an urban road in bangalore
 
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materialsLaboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
Laboratory studies of dense bituminous mixes ii with reclaimed asphalt materials
 
Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...Laboratory investigation of expansive soil stabilized with natural inorganic ...
Laboratory investigation of expansive soil stabilized with natural inorganic ...
 
Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...Influence of reinforcement on the behavior of hollow concrete block masonry p...
Influence of reinforcement on the behavior of hollow concrete block masonry p...
 
Influence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizerInfluence of compaction energy on soil stabilized with chemical stabilizer
Influence of compaction energy on soil stabilized with chemical stabilizer
 
Geographical information system (gis) for water resources management
Geographical information system (gis) for water resources managementGeographical information system (gis) for water resources management
Geographical information system (gis) for water resources management
 
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...Forest type mapping of bidar forest division, karnataka using geoinformatics ...
Forest type mapping of bidar forest division, karnataka using geoinformatics ...
 
Factors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concreteFactors influencing compressive strength of geopolymer concrete
Factors influencing compressive strength of geopolymer concrete
 
Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...Experimental investigation on circular hollow steel columns in filled with li...
Experimental investigation on circular hollow steel columns in filled with li...
 
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...Experimental behavior of circular hsscfrc filled steel tubular columns under ...
Experimental behavior of circular hsscfrc filled steel tubular columns under ...
 
Evaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabsEvaluation of punching shear in flat slabs
Evaluation of punching shear in flat slabs
 
Evaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in indiaEvaluation of performance of intake tower dam for recent earthquake in india
Evaluation of performance of intake tower dam for recent earthquake in india
 
Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...Evaluation of operational efficiency of urban road network using travel time ...
Evaluation of operational efficiency of urban road network using travel time ...
 
Estimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn methodEstimation of surface runoff in nallur amanikere watershed using scs cn method
Estimation of surface runoff in nallur amanikere watershed using scs cn method
 
Estimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniquesEstimation of morphometric parameters and runoff using rs & gis techniques
Estimation of morphometric parameters and runoff using rs & gis techniques
 
Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...Effect of variation of plastic hinge length on the results of non linear anal...
Effect of variation of plastic hinge length on the results of non linear anal...
 
Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...Effect of use of recycled materials on indirect tensile strength of asphalt c...
Effect of use of recycled materials on indirect tensile strength of asphalt c...
 

Recently uploaded

road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
VENKATESHvenky89705
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
ankuprajapati0525
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
FluxPrime1
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
MuhammadTufail242431
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
PrashantGoswami42
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
Jayaprasanna4
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
DuvanRamosGarzon1
 

Recently uploaded (20)

road safety engineering r s e unit 3.pdf
road safety engineering  r s e unit 3.pdfroad safety engineering  r s e unit 3.pdf
road safety engineering r s e unit 3.pdf
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
The role of big data in decision making.
The role of big data in decision making.The role of big data in decision making.
The role of big data in decision making.
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
DESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docxDESIGN A COTTON SEED SEPARATION MACHINE.docx
DESIGN A COTTON SEED SEPARATION MACHINE.docx
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
Halogenation process of chemical process industries
Halogenation process of chemical process industriesHalogenation process of chemical process industries
Halogenation process of chemical process industries
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.Quality defects in TMT Bars, Possible causes and Potential Solutions.
Quality defects in TMT Bars, Possible causes and Potential Solutions.
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
ethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.pptethical hacking in wireless-hacking1.ppt
ethical hacking in wireless-hacking1.ppt
 
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSETECHNICAL TRAINING MANUAL   GENERAL FAMILIARIZATION COURSE
TECHNICAL TRAINING MANUAL GENERAL FAMILIARIZATION COURSE
 

Android application for s park system

  • 1. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 107 ANDROID APPLICATION FOR S-PARK SYSTEM Gaurav Kate, Kaustubh Dave1 , Saprem Kulkarni2 , R. B. Dhumale3 Department of E & TC Engg., Sinhgad College of Engineering, Pune, India. Abstract Finding a parking space in most metropolitan areas, during the rush hours, is difficult for drivers. The problem arises from not knowing where is the empty space; even if it is known, many vehicles may pursue very limited parking spaces to cause serious traffic congestion. In this project, a prototype of smart parking (S-Park) system is designed and implemented that allows drivers to effectively find and reserve the empty parking spaces using an android application connected to Internet. By periodically polling the parking status from the sensor networks deployed in parking lots, the reservation status is affected by the change of physical parking status. The drivers are allowed to access the server on their Android smartphones. The proposed smart parking policy has the potential to solve the problems of parking systems, as well as reduce traffic congestion caused by parking searching thus making the system two-way efficient, that is, cost wise and time wise. Key Words: Smart parking system, Android based application, Embedded server, One time password. --------------------------------------------------------------------***---------------------------------------------------------------------- 1. INTRODUCTION Searching for the parking space in metropolitan areas is now becoming time consuming. Due to mismanagement in the parking space, it is difficult for drivers to find the parking slot which results more traffic congestion and air pollution by constantly wandering in certain area for available parking space. Many smart parking systems are trying to reduce such traffic congestion and improve convenience for drivers. There are some currently working parking guidance systems which obtain available parking space information from deployed sensors and provide it to drivers[5]. However, these systems are not helpful to guide the drivers to find the proper empty parking slot in the parking space. When available spaces are limited, and if more drivers are heading towards these spaces, it will cause severe congestion. Even though driver reaches the parking area, there are certain problems such as blind search [3] in finding the empty slots. It causes not only wastage of money but wastage of fuel also. To solve the this problem, techniques like buffered parking information sharing(BPIS) [3] are used. But determining the number of buffered spaces is difficult. If buffered spaces are low, there is problem of “multiple-cars- chase-single-space”. If buffer is large then efficient utilizations of parking slots is very low. There are some systems like smart parking service based on wireless sensor networks [1] which uses wireless sensors to effectively find the available parking space. But to use this system, additional hardware needs to be installed in the car which is not feasible. New Smart Parking System Based on Resource Allocation and Reservations [2] which has facility to reserve the parking slot for fixed amount of time. However, if the driver does not follow the timings as per reservation it causes inconvenience for others. The solution proposed in this project works as when user wants to park car at the parking, the user uses the Android application to check for available parking slots. The availability is updated by the server when the availability is checked by the user. If the slot is available, the user then enters the payment mode and payment details. These details are stored on the server and an OTP (One Time Password) is generated, which is given to the user after payment is verified. This OTP is then valid for a certain amount of time after which it expires. The user when reaches the parking, is required to enter the valid OTP and based on the current availability of the parking slots, the nearest available parking slot is allocated. The proposed solution provides an efficient method for providing parking space to the user as they are allotted specific and unique OTP (One Time Password) on successful booking of parking slots. This eliminates the need of human intervention at the parking lot, as the user simply needs to enter the OTP at the console provided at the entrance of the parking lot. Also the provided OTP remains valid for a pre-defined amount of time which eliminates the problem of the user booking the space and not showing up which can result in under utilization of the parking lot. 2. METHDOLOGY In the system, the server periodically sends signals to the sensor controller which checks for the availability using the proximity sensors installed at each of the parking spaces. Based on the statuses of these proximity sensors, the occupancy and availability is updated on the server and this status is then shown to the user whenever availability is checked on the android application. Now, when the user wants to book a parking space, and a space is available, payment method is chosen and payment details are entered by the user. On authentication of the payment details, a space is booked on the server and a One Time Password (OTP) is generated which is a unique identification for the user. That OTP is stored at both places, that is, at the user side (android application) and server side. Now when the user reaches the parking, the OTP is required to be entered on the console. This entered OTP is then verified with respect to correctness as well as time limit with the server and indicated to the user
  • 2. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 108 appropriately. On verification, the server checks for the nearest available parking space and allocates it to the user and displays the allotted slot’s location on the display. On getting the location, the user parks the car and the corresponding occupancy status is updated on the server using the proximity sensors. As seen from the Figure 1, the central controlling unit of the system is the server which performs multiple functions such as interfacing with the console, that is, display and keypad, connecting to the sensor controller to update the status of the parking spaces, that is, whether empty or occupied and lastly as a server so as to receive requests from the client side, that is, smartphone connected to the network to check availability as well as book parking spaces. It also checks for the correctness of the entered OTP and gives the corresponding indication. The sensors, with the help of sensor controller, at each of the parking slots check for the occupancy of their parking spaces and give the corresponding status to the server which then updates its database. The smartphone then on the user’s side is used to check the availability status of the parking spaces at a particular parking lot and if available book a space. Each slot is provided with ultrasonic sensor with 8-bit MCU( microcontroller unit) and each MCU is connected to the embedded server via one wire protocol having TDMA type of multiplexing [4]. 3. EXPERIMENTATION Fig. 1:Block diagram of proposed S-Park system Ultrasonic sensor (HC-SR 04) is interfaced with the sensor controller as shown in the above Figure 2. The ultrasonic sensor works on the principle of SONAR(Sound Navigation and Ranging) i.e. sending a pulse of ultrasonic waves of frequency 44 kHz when a signal of pulse width more than 10 ms is applied at the trigger input of the sensor. On occurrence of an obstacle, the ultrasonic waves get reflected and are sensed which in turn generate a pulse at the Echo pin of the ultrasonic sensor. The width of this pulse at the echo pin is measured in order to find the distance. The algorithm to develop android application is given below. Fig. 2. Ultrasonic sensor interfacing Algorithm: 1. Create Main Activity. 2. Create Check Availability Activity and download the updated availability file from the server and if available go to next screen. 3. Extract the available slots from the downloaded file and display on the screen. 4. Create Payment options Activity and select payment mode and go to next screen. 5. Create Payment details activity and accept details. 6. Generate OTP and send user’s name and OTP to the server. 4. RESULTS Some results of proposed systems are shown below to validate the proposed S-Park system. Development of Android Application: The Android Application needs to connect to the network, and then request server to check for the availability and thus download available spaces information from the server as shown in Figure 3. Fig. 3. Application screen test for various versions of android
  • 3. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 109 After opening this Android application, next step is checking availability of parking spaces on application as shown in Figure 4. The file is downloaded containing the current availability of the parking slots using HttpURLConnection. If the available spaces are zero then, the “Book Now” button is freezes as shown in Figure 5. Fig. 4:Checking availability of parking spaces on application Then on the BookSpace screen, the payment mode is selected by the user, and followed by “Pay Now” button as shown in Figure 6. User has to select either of the payment methods to continue. This is followed by Payment Activity wherein the user needs to enter the payment details which are then sent to the server as shown in Figure 7. The final screen in the application is the OTP generation screen where on successful payment an OTP (One Time Password) is generated which is sent to the server along with the user details. The user then exits the App using the “Exit” button as shown in Figure 8. Fig.5:Checking availability of parking spaces on application Fig. 6. Payment mode The future work is to provide condition monitoring of electronics components used in system to improve performance without fail [6]-[11]. Also implement system based on solar energy as proposed in [12]-[13]. 5. CONCLUSION Finding a parking these days is a difficult task and generally results in traffic congestion and loss of time and fuel. This project aims at reducing such difficulties of the drivers by providing a reservation-based parking policy, thus alleviating their problems and making the process of finding a parking space easier. This project provides a solution for reservation based parking by keeping a time limit for the cars to arrive to reserved parking. This also avoids under utilization of the parking space. This project also implements the online reservation and payment facility so that there is assured parking available when driver reaches the parking. This system also provides online information of whether the parking if full or not. The Android app developed is user friendly as well as found to be working on different android phones with different screen resolutions. The app does not require any other features except internet connectivity to run. This system uses a wired network of sensors to connect to the embedded server this reduces overall cost of the system. It eliminates the need of additional hardware to be installed in cars. Ultrasonic sensors are used in this project to detect the cars in each slot this provides accurate as well as cost effective method to detect occupancy of the slot. The microcontroller based interface between server and sensors make the system reliable, cost effective, and extendible if number of slots needs to be increased after installation. Since number of cars is increasing at a fast rate but parking space does not increase to such an extent. There is need of such systems that require very less infrastructure for existing parking.
  • 4. IJRET: International Journal of Research in Engineering and Technology eISSN: 2319-1163 | pISSN: 2321-7308 _______________________________________________________________________________________ Volume: 04 Issue: 10 | Oct-2015, Available @ http://www.ijret.org 110 Fig. 7 : Functions of android application Fig. 8 : Functions of android application REFERENCES [1] Jihoon Yang, Jorge Portilla and Teresa Riesgo, “Smart Parking Service based on Wireless Sensor Networks”, IEEE Magazine, Feb 2012, pp. 6029-6033. [2] Yanfeng Geng, “New Smart Parking System Based on ResourceAllocation and Reservations”, IEEE Transaction on intelligent transportation systems, Vol. 14, Issue No. 3, Sept 2013, pp. 1129-1138. [3] Hongwei Wang and Wenbo He, “A Reservation-based Smart Parking System”, The First International Workshop on Cyber-Physical Networking Systems, University of Nebraska-Lincoln, USA, Mar 2011, pp. 701-705. [4] Behrouz Forouzan, “Data Communications and Networking”, 4th edition, McGrawHill publications, India 2012, pp. 55-94. [5] Willie D. Jones ,”Parking 2.0 meters go high tech”, IEEE Spectrum, December 2006, pp. 20. [6] R Khandebharad, R. B. Dhumale, S. S. Lokhande, “Electrolytic Capacitor Online Failure Detection and Life Prediction Methodology”, Int. J. Research in Engg. And Techn., vol.4, Iss. 2, pp.636-641, Feb. 2015. [7] R Khandebharad, R. B. Dhumale, S. S. Lokhande, “Online Failure Prediction of the Aluminum Electrolytic Capacitor”, Int. J. Science and Research, vol.4, Iss. 6, pp.2099-2102, June. 2015. [8] R. B. Dhumale, S. D. Lokhande, N. D. Thombare, M. P. Ghatule, “Fault Detection and Diagnosis of High Speed Switching Devices in Power Converter”, Int. J. Research in Engg. And Techn., vol.4, Iss. 2, pp.636- 641, Feb. 2015. [9] M. R. Ubale, R. B. Dhumale, V. V. Dixit, S. D. Lokhande,“ Open Switch Fault Diagnosis Method in Three Phase Inverter”, in Proc. National Conference on Latest Trends in Electronics and Telecommunication, Sinhgad College of engineering,Pune, Oct. 2013, pp- 28. [10]M. R Ubale, R. B. Dhumale, S. D. Lokhande, “Method of Open Switch Fault Detection in Three Phase Inverter using Artificial Neural Network”, Int. J. Research in Science and Advance Technology, Vol. 3, Iss. 3, PP 78-82, June 2014. [11]Lalit Patil, R. B. Dhumale, S. D. Lokhande, “Fault Detection and Diagnosis Technique gor Power Inverter using Discrete Wavelet Transform”, Int. J. Electronics Circuits and systems, Vol. 3, Iss. 2, pp 174-178, June 2014. [12]C. Ugale , R. B. Dhumale , V. V. Dixit, “ DC-DC Converter for Solar Energy Harvesting using PID Controller”, Int. J. Engineering Applications and Technology, Vol. 1, Iss. 13, pp 132-136, July 2105. [13]C. Ugale , R. B. Dhumale , V. V. Dixit, “DC-DC Converter using Fuzzy Logic Controller”, Int. J. Research in Engg. and Techn., vol.4, Iss.07, pp.490- 696, July. 2015.