Vehicle Tracking System using GPS and Arduino

In our previous article, we have learned about “How To Interface GPS Module With Computer and How to make a GPS Updated Clock”. In this project we are going one step ahead with GPS and going to Track A Vehicle Using GPS And GSM. This Vehicle Tracking System can also be used for Accident Detection Alert System, Soldier Tracking System and many more, by just making few changes in hardware and software.

Tracking of vehicle is a process in which we track the vehicle location in form of Latitude And Longitude (GPS coordinates). GPS Coordinates are the value of a location. This system is very efficient for outdoor application purpose.

This kind of Vehicle Tracking System Project is widely in tracking Cabs/Taxis, stolen vehicles, school/colleges buses etc.

Components Required:

  • Arduino
  • GSM Module
  • GPS Module
  • 16×2 LCD
  • Power Supply
  • Connecting Wires
  • 10 K POT

GPS Module And Its Working:

GPS stands for Global Positioning System and used to detect the Latitude and Longitude of any location on the Earth, with exact UTC time (Universal Time Coordinated). GPS module is the main component in our vehicle tracking system project. This device receives the coordinates from the satellite for each and every second, with time and date.

GPS module SKG13BL

GPS Module sends the data related to tracking position in real time, and it sends so many data in NMEA format (see the screenshot below). NMEA format consist several sentences, in which we only need one sentence. This sentence starts from $GPGGA and contains the coordinates, time and other useful information. This GPGGA is referred to Global Positioning System Fix Data. Know more about Reading GPS Data And Its Strings Here.

We can extract coordinate from $GPGGA string by counting the commas in the string. Suppose you find $GPGGA string and stores it in an array, then Latitude can be found after two commas and Longitude can be found after four commas. Now these latitude and longitude can be put in other arrays.

GPS-module data in arduino serial monitor

Below is the $GPGGA String, along with its description:

$GPGGA,104534.000,7791.0381,N,06727.4434,E,1,08,0.9,510.4,M,43.9,M,,*47

$GPGGA,HHMMSS.SSS,latitude,N,longitude,E,FQ,NOS,HDP,altitude,M,height,M,,checksum data

IdentifierDescription
$GPGGAGlobal Positioning system fix data
HHMMSS.SSSTime in hour minute seconds and milliseconds format.
LatitudeLatitude (Coordinate)
NDirection N=North, S=South
LongitudeLongitude(Coordinate)
EDirection E= East, W=West
FQFix Quality Data
NOSNo. of Satellites being Used
HPDHorizontal Dilution of Precision
AltitudeAltitude from sea level
MMeter
HeightHeight
ChecksumChecksum Data

Circuit Explanation:

Circuit Connections of this Vehicle Tracking System Project is simple. Here Tx pin of GPS module is directly connected to digital pin number 10 of Arduino. By using Software Serial Library here, we have allowed serial communication on pin 10 and 11, and made them Rx and Tx respectively and left the Rx pin of GPS Module open. By default Pin 0 and 1 of Arduino are used for serial communication but by using SoftwareSerial library, we can allow serial communication on other digital pins of the Arduino. 12 Volt supply is used to power the GPS Module.

Arduino based Vehicle Tracker using GPS and GSM circuit diagram

GSM module’s Tx and Rx pins of are directly connected to pin Rx and Tx of Arduino. GSM module is also powered by 12v supply. An optional LCD’s data pins D4, D5, D6 and D7 are connected to pin number 5, 4, 3, and 2 of Arduino. Command pin RS and EN of LCD are connected with pin number 2 and 3 of Arduino and RW pin is directly connected with ground. A Potentiometer is also used for setting contrast or brightness of LCD.

Working Explanation:

In this project, Arduino is used for controlling whole the process with a GPS Receiver And GSM Module. GPS Receiver is used for detecting coordinates of the vehicle, GSM module is used for sending the coordinates to user by SMS. And an optional 16×2 LCD is also used for displaying status messages or coordinates. We have used GPS Module SKG13BL and GSM Module SIM900A.

GPS and GSM based Vehicle Tracking System Block Diagram

When we ready with our hardware after programming, we can install it in our vehicle and power it up. Then we just need to send a SMS, “Track Vehicle”, to the system that is placed in our vehicle. We can also use some prefix (#) or suffix (*) like #Track Vehicle*, to properly identify the starting and ending of the string, like we did in these projects: GSM Based Home Automation And Wireless Notice Board

Sent message is received by GSM module which is connected to the system and sends message data to Arduino. Arduino reads it and extract main message from the whole message. And then compare it with predefined message in Arduino. If any match occurs then Arduino reads coordinates by extracting $GPGGA String from GPS module data (GPS working explained above) and send it to user by using GSM module. This message contains the coordinates of vehicle location.

Programming Explanation:

In programming part first we include libraries and define pins for LCD & software serial communication. Also define some variable with arrays for storing data. Software Serial Library is used to allow serial communication on pin 10 and 11.

#include<LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

#include <SoftwareSerial.h>
SoftwareSerial gps(10,11); // RX, TX
char str[70];
String gpsString="";
... ....
.... ....

Here array str[70] is used for storing received message from GSM module and gpsString is used for storing GPS string. char *test=”$GPGGA” is used to compare the right string that we need for coordinates.

After it we have initialized serial communication, LCD, GSM & GPS module in setup function and showed a welcome message on LCD.

void setup() 
{
  lcd.begin(16,2);
  Serial.begin(9600);
  gps.begin(9600);

  lcd.print("Vehicle Tracking");
  lcd.setCursor(0,1);
  ... ....
  .... ....

In loop function we receive message and GPS string.

void loop()
{
  serialEvent();
  if(temp)
  {
    get_gps();
    tracking();
  }
}

Functions void init_sms and void send_sms() are used to initialising and sending message. Use proper 10 digit Cell phone no, in init_sms function.  

Function void get_gps() has been used to extract the coordinates from the received string.

Function void gpsEvent() is used for receiving GPS data into the Arduino.

Function void serialEvent() is used for receiving message from GSM and comparing the received message with predefined message (Track Vehicle).

void serialEvent()
{
  while(Serial.available())
  {
    if(Serial.find("Track Vehicle"))
    {
      temp=1;
      break;
    }
    ... ....
    .... ...

Initialization Function ‘Gsm_init() is used for initialising and configuring the GSM Module, where firstly, GSM module is checked whether it is connected or not by sending ‘AT’ command to GSM module. If response OK is received, means it is ready. System keeps checking for the module until it becomes ready or until ‘OK’ is received. Then ECHO is turned off by sending the ATE0 command, otherwise GSM module will echo all the commands. Then finally Network availability is checked through the ‘AT+CPIN?’ command, if inserted card is SIM card and PIN is present, it gives the response +CPIN: READY. This is also check repeatedly until the network is found. This can be clearly understood by the Video below.

Check all the above functions in Code Section below.Code

#include<LiquidCrystal.h>
LiquidCrystal lcd(7, 6, 5, 4, 3, 2);

#include <SoftwareSerial.h>
SoftwareSerial gps(10,11); // RX, TX

//String str=””;
char str[70];
String gpsString=””;

char *test=”$GPGGA”;

String latitude=”No Range      “;
String longitude=”No Range     “;

int temp=0,i;
boolean gps_status=0;

void setup() 
{
  lcd.begin(16,2);
  Serial.begin(9600);
  gps.begin(9600);

  lcd.print(“Vehicle Tracking”);
  lcd.setCursor(0,1);
  lcd.print(”    System      “);
  delay(2000);
  gsm_init();
  lcd.clear();
  Serial.println(“AT+CNMI=2,2,0,0,0”);
  lcd.print(“GPS Initializing”);
  lcd.setCursor(0,1);
  lcd.print(”  No GPS Range  “);
  get_gps();
  delay(2000);
  lcd.clear();
  lcd.print(“GPS Range Found”);
  lcd.setCursor(0,1);
  lcd.print(“GPS is Ready”);
  delay(2000);
  lcd.clear();
  lcd.print(“System Ready”);
  temp=0;
}

void loop()
{
  serialEvent();
  if(temp)
  {
    get_gps();
    tracking();
  }
}

void serialEvent()
{
  while(Serial.available())
  {
    if(Serial.find(“Track Vehicle”))
    {
      temp=1;
      break;
    }
    else
    temp=0;
  }
}

void gpsEvent()
{
  gpsString=””;
  while(1)
  {
   while (gps.available()>0)            //checking serial data from GPS
   {
    char inChar = (char)gps.read();
     gpsString+= inChar;                    //store data from GPS into gpsString
     i++;
     if (i < 7)                      
     {
      if(gpsString[i-1] != test[i-1])         //checking for $GPGGA sentence
      {
        i=0;
        gpsString=””;
      }
     }
    if(inChar==’\r’)
    {
     if(i>65)
     {
       gps_status=1;
       break;
     }
     else
     {
       i=0;
     }
    }
  }
   if(gps_status)
    break;
  }
}

void gsm_init()
{
  lcd.clear();
  lcd.print(“Finding Module..”);
  boolean at_flag=1;
  while(at_flag)
  {
    Serial.println(“AT”);
    while(Serial.available()>0)
    {
      if(Serial.find(“OK”))
      at_flag=0;
    }
    
    delay(1000);
  }

  lcd.clear();
  lcd.print(“Module Connected..”);
  delay(1000);
  lcd.clear();
  lcd.print(“Disabling ECHO”);
  boolean echo_flag=1;
  while(echo_flag)
  {
    Serial.println(“ATE0”);
    while(Serial.available()>0)
    {
      if(Serial.find(“OK”))
      echo_flag=0;
    }
    delay(1000);
  }

  lcd.clear();
  lcd.print(“Echo OFF”);
  delay(1000);
  lcd.clear();
  lcd.print(“Finding Network..”);
  boolean net_flag=1;
  while(net_flag)
  {
    Serial.println(“AT+CPIN?”);
    while(Serial.available()>0)
    {
      if(Serial.find(“+CPIN: READY”))
      net_flag=0;
    }
    delay(1000);
  }
  lcd.clear();
  lcd.print(“Network Found..”);
  delay(1000);
  lcd.clear();
}

void get_gps()
{
   gps_status=0;
   int x=0;
   while(gps_status==0)
   {
    gpsEvent();
    int str_lenth=i;
    latitude=””;
    longitude=””;
    int comma=0;
    while(x<str_lenth)
    {
      if(gpsString[x]==’,’)
      comma++;
      if(comma==2)        //extract latitude from string
      latitude+=gpsString[x+1];     
      else if(comma==4)        //extract longitude from string
      longitude+=gpsString[x+1];
      x++;
    }
    int l1=latitude.length();
    latitude[l1-1]=’ ‘;
    l1=longitude.length();
    longitude[l1-1]=’ ‘;
    lcd.clear();
    lcd.print(“Lat:”);
    lcd.print(latitude);
    lcd.setCursor(0,1);
    lcd.print(“Long:”);
    lcd.print(longitude);
    i=0;x=0;
    str_lenth=0;
    delay(2000);
   }
}

void init_sms()
{
  Serial.println(“AT+CMGF=1”);
  delay(400);
  Serial.println(“AT+CMGS=\”+91**********\””);   // use your 10 digit cell no. here
  delay(400);
}

void send_data(String message)
{
  Serial.println(message);
  delay(200);
}

void send_sms()
{
  Serial.write(26);
}

void lcd_status()
{
  lcd.clear();
  lcd.print(“Message Sent”);
  delay(2000);
  lcd.clear();
  lcd.print(“System Ready”);
  return;
}

void tracking()
{
    init_sms();
    send_data(“Vehicle Tracking Alert:”);
    send_data(“Your Vehicle Current Location is:”);
    Serial.print(“Latitude:”);
    send_data(latitude);
    Serial.print(“Longitude:”);
    send_data(longitude);
    send_data(“Please take some action soon..\nThankyou”);
    send_sms();
    delay(2000);
    lcd_status();
}

Von Sirko

Schreibe einen Kommentar

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind mit * markiert

Diese Website verwendet Akismet, um Spam zu reduzieren. Erfahre mehr darüber, wie deine Kommentardaten verarbeitet werden.