Track A Vehicle on Google Maps using Arduino, ESP8266 & GPS

Published  June 23, 2016   66
S Saddam
Author
Arduino Vehicle Tracker using ESP8266, GPS and Google Maps

Vehicle Tracking System becomes very important now days, especially in case of stolen vehicles. If you have GPS system installed in your vehicle, you can track you Vehicle Location, and its helps police to track the Stolen Vehicles. Previously we have built similar project in which Location coordinates of Vehicle are sent on Cell Phone, check here ‘Arduino based Vehicle Tracker using GPS and GSM.

 

Here we are building more advanced version of Vehicle Tracking System in which you can Track your Vehicle on Google Maps. In this project, we will send the location coordinates to the Local Server and you just need to open a ‘webpage’ on your computer or mobile, where you will find a Link to Google Maps with your Vehicles Location Coordinates. When you click on that link, it takes you on Google Maps, showing your vehicles location. In this Vehicle Tracking System using Google Maps, GPS Module is used for getting the Location Coordinates, Wi-Fi module to keep send data to computer or mobile over Wi-Fi and Arduino is used to make GPS and Wi-Fi talk to each other.

tracking vehicle using Google-Maps

 

How it Works:

To track the vehicle, we need to find the Coordinates of Vehicle by using GPS module. GPS module communicates continuously with the satellite for getting coordinates. Then we need to send these coordinates from GPS to our Arduino by using UART. And then Arduino extract the required data from received data by GPS.

 

Vehicle Tracking System GoogleMaps Blcok Diagram

Before this, Arduino sends command to Wi-Fi Module ESP8266 for configuring & connecting to the router and getting the IP address. After it Arduino initialize GPS for getting coordinates and the LCD shows a ‘Page Refresh message’. That means, user needs to refresh webpage. When user refreshes the webpage Arduino gets the GPS coordinates and sends the same to webpage (local server) over Wi-Fi, with some additional information and a Google maps link in it. Now by clicking this link user redirects to Google Maps with the coordinate and then he/she will get the Vehicle Current Location at the Red spot on the Google Maps. The whole process is properly shown in the Video at the end.

 

Components Required:

  • Arduino UNO
  • Wi-Fi Module ESP8266
  • GPS module
  • USB Cable
  • Connecting wires
  • Laptop   
  • Power supply
  • 16x2 LCD
  • Bread Board
  • Wi-Fi router

 

Circuit Explanation:

Circuit for this ‘Vehicle Tracking using Google Maps project’ is very simple and we mainly need an Arduino UNO, GPS Module and ESP8266 Wi-Fi module. There is a 16x2 LCD optionally connected for displaying the status. This LCD is connected at 14-19 (A0-A5) Pins of Arduino.

Vehicle Tracking System using Google Maps circuit-diagram

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 adaptor is used to power the GPS Module. Go through here to learn “How to Use GPS with Arduino” and get the coordinates.

Wi-Fi module ESP8266’s Vcc and GND pins are directly connected to 3.3V and GND of Arduino and CH_PD is also connected with 3.3V. Tx and Rx pins of ESP8266 are directly connected to pin 2 and 3 of Arduino. Software Serial Library is also used here to allow serial communication on pin 2 and 3 of Arduino. We have already covered the Interfacing of ESP8266 Wi-Fi module to Arduino in detail, also please go through “How to Send Data from Arduino to Webpage using WiFi” before doing this project. Below is the picture of ESP8266:

ESP8266-Wi-Fi-module

ESP8266 has two LEDs, one is Red, for indicating Power and second is Blue that is Data Communication LED. Blue LED blinks when ESP sends some data via its Tx pin. Also, do not connect ESP to +5 volt supply otherwise your device may damage. Here in this project, we have selected 9600 baud rate for all the UART communications.

User can also see the communication between Wi-Fi module ESP8266 and Arduino, on the Serial Monitor, at the baud rate of 9600:

Arduino-Vehicle-Tracking-System-serial-monitor

Also check the Video at the end of this project, for detailed working process. 

 

GPS Degree Minute to Decimal Degree Converison of Coordinates:

GPS Module receives coordinates from satellite in Degree Minute format (ddmm.mmmm) and here we need Decimal Degree format for search the location on Google Maps. So first we need to convert coordinates from Degree Minute Format to Decimal Degree Format by using given formula.

Suppose 2856.3465 (ddmm.mmmm) is the Latitude that we receive form the GPS Module. Now first two numbers are Degrees and remaining are Minutes.
So 28 is degree and 56.3465 is minute.

Now here, no need to convert Degree part (28), but only need to convert Minute part into Decimal Degree by dividing 60:

Decimal Degree Coordinate = Degree + Minute/60

Decimal Degree Coordinate = 28 + 56.3465/60

Decimal Degree Coordinate = 28 + 0.94

Decimal Degree Coordinate = 28.94

Same process will be done for Longitude Data. We have converted coordinates from Degree Minute to Decimal Degree by using above formulae in Arduino Sketch:

float minut= lat_minut.toFloat();
minut=minut/60;
float degree=lat_degree.toFloat();
latitude=degree+minut;
     
minut= long_minut.toFloat();
minut=minut/60;
degree=long_degree.toFloat();
logitude=degree+minut;

 

Programming Explanation:

In this code, we have used SerialSoftware library to interface ESP8266 and GPS module with Arduino. Then we have defined different pins for both and initialize UART with 9600 baud rate. Also included LiquidCrystal Library for interface LCD with Arduino.

#include<SoftwareSerial.h>
SoftwareSerial Serial1(2,3); //make RX arduino line is pin 2, make TX arduino line is pin 3.
SoftwareSerial gps(10,11);

#include<LiquidCrystal.h>
LiquidCrystal lcd(14,15,16,17,18,19);

 

After it, we need to define or declare variable and string for different purpose.

String webpage="";
int i=0,k=0;
int  gps_status=0;
String name="<p>1. Name: Your Name </p>";   //22
String dob="<p>2. DOB: 12 feb 1993</p>";     //21
String number="<p>4. Vehicle No.: RJ05 XY 4201</p>";//29
String cordinat="<p>Coordinates:</p>";          //17
String latitude=""; 
String logitude="";                       
String gpsString="";
char *test="$GPGGA";

 

Then we have made some functions for different purposes like:

Function for getting GPS data with coordinates:

void gpsEvent()
{
  gpsString="";
  while(1)
  {
   while (gps.available()>0) 
   {
    char inChar = (char)gps.read();
     gpsString+= inChar;  
     if (i < 7)                      
     {
      if(gpsString[i-1] != test[i-1]) 
      {
        i=0;
        ..... ....
        ..... .....

 

Function for extracting data from GPS string and convert that data to decimal degree format from the decimal minute format, as explained earliar.

void coordinate2dec()
{

    String lat_degree="";
    for(i=18;i<20;i++)  
      lat_degree+=gpsString[i];
    
    String lat_minut="";
    for(i=20;i<28;i++)
      lat_minut+=gpsString[i];
        ..... ....
        ..... .....

 

Function for sending commands to ESP8266 for configuring and connecting it with WIFI.

void connect_wifi(String cmd, int t)
{
  int temp=0,i=0;
  while(1)
  {
    Serial.println(cmd);
    Serial1.println(cmd); 
    while(Serial1.available()>0)
    ..... ....
    ..... .....

 

void show_coordinate() function  for showing coordinate on the LCD and Serial Monitor and void get_ip() function for getting IP address.

 

Void Send() function for creating a String of information that is to be sent to webpage using ESP8266 and void sendwebdata() Function for sending information string to webpage using UART.

 

In void loop function Arduino continuously wait for request form webpage (Refreshing web page).

void loop() 
{
  k=0;
  Serial.println("Please Refresh Ur Page");
  lcd.setCursor(0,0);
  lcd.print("Please Refresh  ");
  lcd.setCursor(0,1);
  lcd.print("Your Web Page..  ");
  while(k<1000)
  ..... ....
  ..... .....

Check the Full Code Below.

Code

#include<SoftwareSerial.h>
SoftwareSerial Serial1(2,3);     //make RX arduino line is pin 2, make TX arduino line is pin 3.
SoftwareSerial gps(10,11);

#include<LiquidCrystal.h>
LiquidCrystal lcd(14,15,16,17,18,19);

boolean No_IP=false;
String IP="";

String webpage="";
int i=0,k=0;
int  gps_status=0;
String name="<p>1. Name: Your Name </p>";   //22
String dob="<p>2. DOB: 12 feb 1993</p>";     //21
String number="<p>4. Vehicle No.: RJ05 XY 4201</p>";//29
String cordinat="<p>Coordinates:</p>";          //17
String latitude=""; 
String logitude="";                       

String gpsString="";
char *test="$GPGGA";

void check4IP(int t1)
{
  int t2=millis();
  while(t2+t1>millis())
  {
    while(Serial1.available()>0)
    {
      if(Serial1.find("WIFI GOT IP"))
      {
        No_IP=true;
      }
    }
  }
}

void get_ip()
{
  IP="";
  char ch=0;
  while(1)
  {
    Serial1.println("AT+CIFSR");
    while(Serial1.available()>0)
    {
      if(Serial1.find("STAIP,"))
      {
        delay(1000);
        Serial.print("IP Address:");
        while(Serial1.available()>0)
        {
          ch=Serial1.read();
          if(ch=='+')
          break;
          IP+=ch;
        }
      }
      if(ch=='+')
      break;
    }
    if(ch=='+')
    break;
    delay(1000);
  }
  lcd.clear();
  lcd.print(IP);
  lcd.setCursor(0,1);
  lcd.print("Port: 80");
  Serial.print(IP);
  Serial.print("Port:");
  Serial.println(80);
  delay(1000);
}

void connect_wifi(String cmd, int t)
{
  int temp=0,i=0;
  while(1)
  {
    Serial.println(cmd);
    Serial1.println(cmd); 
    while(Serial1.available()>0)
    {
      if(Serial1.find("OK"))
      {

      i=8;
      }
    }
    delay(t);
    if(i>5)
    break;
    i++;
  }
  if(i==8)
  {
    Serial.println("OK");
  }
  else
  {
  Serial.println("Error");
  }
  delay(1000);
}

void setup() 
{
  Serial1.begin(9600);
  Serial.begin(9600);
  lcd.begin(16,2);  
  lcd.print("Vehicle Tracking");
  lcd.setCursor(0,1);
  lcd.print("     System     ");
  delay(2000);
  lcd.clear();
  lcd.print("WIFI Connecting..");
//  lcd.setCursor(0,1);
//  lcd.print("Please Wait...");
  delay(1000);
  connect_wifi("AT",1000);
  connect_wifi("AT+CWMODE=3",1000);
  connect_wifi("AT+CWQAP",1000);  
  connect_wifi("AT+RST",5000);
  check4IP(5000);
  if(!No_IP)
      {
        Serial.println("Connecting Wifi....");
        connect_wifi("AT+CWJAP=\"1st floor\",\"muda1884\"",7000);   //AT+CWJAP=”wifi_username”,”wifi_password”
      }
      else
        {
        }
      Serial.println("Wifi Connected");
      lcd.clear();
      lcd.print("WIFI Connected");
      delay(2000);
      lcd.clear();
      lcd.print("Getting IP"); 
      get_ip();
      delay(2000);
      connect_wifi("AT+CIPMUX=1",100);
      connect_wifi("AT+CIPSERVER=1,80",100);
      Serial1.end();
      lcd.clear();
      lcd.print("Waiting For GPS");
      lcd.setCursor(0,1);
      lcd.print("     Signal    ");
      delay(2000);
      gps.begin(9600);
      get_gps();
      show_coordinate();
      gps.end();
      Serial1.begin(9600);
      delay(2000);
      lcd.clear();
      lcd.print("GPS is Ready");
      delay(1000);
      lcd.clear();
      lcd.print("System Ready");
      Serial.println("System Ready..");
}

void loop() 
{
  k=0;
  Serial.println("Please Refresh Ur Page");
  lcd.setCursor(0,0);
  lcd.print("Please Refresh  ");
  lcd.setCursor(0,1);
  lcd.print("Your Web Page..  ");
  while(k<1000)
  {
    k++;

   while(Serial1.available())
   {
    if(Serial1.find("0,CONNECT"))
    {
      Serial1.end();
  gps.begin(9600);
  get_gps();
  gps.end();
  Serial1.begin(9600);
  Serial1.flush();
   /* lcd.clear();
      lcd.print("Sending Data to ");
      lcd.setCursor(0,1);
      lcd.print("    Web Page     ");*/
      Serial.println("Start Printing");
      Send();
      show_coordinate();
      Serial.println("Done Printing");
      delay(5000);
      lcd.clear();
      lcd.print("System Ready");
      delay(1000);
      k=1200;
      break;
    }
  }
  delay(1);
 }
}

void gpsEvent()
{
  gpsString="";
  while(1)
  {
   while (gps.available()>0)                //Serial incoming data from GPS
   {
    char inChar = (char)gps.read();
     gpsString+= inChar;                    //store incoming data from GPS to temporary string str[]
     i++;
     if (i < 7)                      
     {
      if(gpsString[i-1] != test[i-1])       //check for right string
      {
        i=0;
        gpsString="";
      }
     }
    if(inChar=='\r')
    {
     if(i>65)
     {
       gps_status=1;
       break;
     }
     else
     {
       i=0;
     }
    }
  }
   if(gps_status)
    break;
  }
}

void get_gps()
{
   gps_status=0;
   int x=0;
   while(gps_status==0)
   {
    gpsEvent();
    int str_lenth=i;
    latitude="";
    logitude="";
    coordinate2dec();
        i=0;x=0;
    str_lenth=0;
   }
}

void show_coordinate()
{
    lcd.clear();
    lcd.print("Latitide:");
    lcd.print(latitude);
    lcd.setCursor(0,1);
    lcd.print("Longitude:");
    lcd.print(logitude);
    Serial.print("Latitude:");
    Serial.println(latitude);
    Serial.print("Longitude:");
    Serial.println(logitude);
}

void coordinate2dec()
{
    
    //j=0;
    String lat_degree="";
    for(i=18;i<20;i++)          //extract latitude from string
      lat_degree+=gpsString[i];
    
    String lat_minut="";
    for(i=20;i<28;i++)
      lat_minut+=gpsString[i];
    
    String long_degree="";
    for(i=30;i<33;i++)          //extract longitude from string
      long_degree+=gpsString[i];
      
    String long_minut="";
    for(i=33;i<41;i++)
      long_minut+=gpsString[i];
      
     float minut= lat_minut.toFloat();
     minut=minut/60;
     float degree=lat_degree.toFloat();
     latitude=degree+minut;
     
     minut= long_minut.toFloat();
     minut=minut/60;
     degree=long_degree.toFloat();
     logitude=degree+minut;
}

void Send()
{
     
      webpage = "<h1>Welcome to Saddam Khan's Page</h1><body bgcolor=f0f0f0>";
      webpage+=name;
      webpage+=dob;
      webpage+=number;
      webpage+=cordinat;
      webpage+="<p>Latitude:";
      webpage+=latitude;
      webpage+="</p>";
      webpage+="<p>Longitude:";
      webpage+=logitude;
      webpage+="</p>";
     webpage+= "<a href=\"http://maps.google.com/maps?&z=15&mrt=yp&t=k&q=";
     webpage+=latitude;
     webpage+='+';              //28.612953, 77.231545   //28.612953,77.2293563
     webpage+=logitude;
     webpage+="\">Click Here for google map</a>";
     sendwebdata();
       webpage="";

     while(1)
     {
      Serial.println("AT+CIPCLOSE=0");
      Serial1.println("AT+CIPCLOSE=0");
      while(Serial1.available())
      {
        //Serial.print(Serial1.read());
        if(Serial1.find("0,CLOSE"))
        {
          return;
        }
      }
      delay(500);
      i++;
      if(i>5)
      {
        i=0;
      }
      if(i==0)
      break;
     }
}

void sendwebdata()
{
     i=0;
     while(1)
     {
      unsigned int l=webpage.length();
      Serial1.print("AT+CIPSEND=0,");
      Serial1.println(l+2);
      Serial.println(l+2);
      Serial.println(webpage);

      Serial1.println(webpage);
      while(Serial1.available())
      {
        if(Serial1.find("OK"))
        {
         return;
        }
      }
            i++;
      if(i>5)
        i=0;
        if(i==0)
        break;
      delay(200);
     }
}

Video

Have any question realated to this Article?

Ask Our Community Members

Comments

Submitted by Mohamad Alhaddad on Mon, 06/27/2016 - 05:53

Permalink

Great,
You have said data will be uploaded to web via wifi module, however i think currently not all cars have internet wifi included inside! i meant isn't it better to keep on the gsm shield to drop data to the web ?? since you don't need the thief to go to wifi AP and update where is he?

Did you the project to use gsm for the same purpose,and how can i add an alarm system,which i will use the gsm to trigger it??please help here

Submitted by Suubrahmanyam on Thu, 11/09/2017 - 05:31

In reply to by saddam khan

Permalink

Sir.... Pls help me.... I trusted u and completed the entire project and dumped source code. And i am able to reach to the LCD status.. That system is ready. But i am unable to get the msg to the mobile phone.... And i didn't get accurate latitude and longitude... Pls sir... Help me sir....

Submitted by banny on Sat, 09/24/2016 - 13:40

Permalink

Sir i realy like your project please can u modify it to use only gsm module to do the same task pls

Submitted by Mandila on Mon, 10/10/2016 - 01:28

Permalink

Thanks pertaining to providing these sort of great details.

Submitted by Abraham on Thu, 11/17/2016 - 20:21

Permalink

I ran this code but in the serial monitor it is showing error after each AT commands instead of showing OK ,can u help me with the problem

Submitted by Andre on Sun, 11/20/2016 - 13:09

Permalink

Great project.
I am courious i fyou have any idea if this would be moodable to log the entire trip and then upload the tripdata to a server when wifi was availiable?

Submitted by Jose on Fri, 11/25/2016 - 11:38

Permalink

Great project.

i have a GPS arduino Shield V1.2 does it works with this shield?
thank you so much

Submitted by santosh on Sat, 01/07/2017 - 16:27

Permalink

i am getting error when i am compiling code. pls guide me.

Submitted by José López on Mon, 01/30/2017 - 05:57

Permalink

Please help me to improve the accuracy of the coordinates since they only indicate me to two decimal places on the serial monitor and I want them to indicate me more decimals.

Thank you very much for your help

Submitted by manikanta on Sat, 02/18/2017 - 16:52

Permalink

hello i had tried your code bt is displaying as no gps range. when i was checking gps it is tracking.can u please give me the solution for it

Submitted by Milan parekh on Thu, 03/02/2017 - 12:59

Permalink

Can I also monitor vehicle real data like speed, distance travel , temperature ,fuel level etc...through some addition ..? Can u tell me how?

You can use ThingSpeak to monitor the data over internet and you have to use various sensor to collect data like DHT11 Humidity & temperature sensor , BM180 pressure sensor etc. Distance and speed can be calculated using GPS data itself. Check here to use ThingSpeak Live Temperature and Humidity Monitoring over Internet using Arduino and ThingSpeak 

Submitted by akash on Fri, 03/24/2017 - 18:03

Permalink

sir i m getting errors which are as following
if (Serial1.find("WIFI GOT IP"))
if (Serial1.find("STAIP,"))
if (Serial1.find("0,CLOSE"))
if (Serial1.find("OK"))

Submitted by rajat ahuja on Mon, 05/01/2017 - 03:18

Permalink

this project is showing the incorrect longitude and correct latitude. This may be due to some mistake in the code as my gps is working properly. So plz check the code and update it......

Submitted by shiv kumar on Sun, 06/11/2017 - 12:52

Permalink

Code successfully compiled and uploaded but problem is occuring at web browser. We are unable to connect to the web browser using 192.168.1.5:80 .... we are not getting reliable output while connecting to wifi . plz reply for this issue ...hopefull waiting for the solution .ty

Submitted by ram on Sun, 06/11/2017 - 21:25

Permalink

hello
this is my final year project, am confused how all these works- my project is like exact same but need be luggage instead of vehicle.
can anyone help me please

Submitted by Shriprad on Sun, 07/30/2017 - 12:39

Permalink

Sir You Didn;t explain about how to make web page for this

Submitted by Edgar on Sat, 09/16/2017 - 04:58

Permalink

Hi, What GPS Module model did you use?
Thank you in advance.

Submitted by zarrouk med mehdi on Fri, 01/05/2018 - 19:33

Permalink

so you ar sending data from arduino to local ip ! ok but you can not do the tracking if you do not send data to public ip ! maby we can just send data to email and read from there ..what you think saddam khan ?

Submitted by Shah Amar Jagd… on Wed, 01/10/2018 - 22:13

Permalink

Hi Sir,
My Name Is Shah Amar .And I would like to know about The Which Model Is Always Use for Gps Module?

Submitted by nishanth on Mon, 01/29/2018 - 02:13

Permalink

great work..!!
QQ: Is it possible to send the gps data to a cloud endpoint with authentication and bearer over https.?
if yes, can you please give some pointers..
TIA..

Submitted by Hardik Gera on Sun, 02/11/2018 - 16:00

Permalink

i am making a project which is almost same so can u tell me how you had made the android app in which we can track the locations

Submitted by Teresa on Fri, 02/16/2018 - 17:56

Permalink

hello.. can this gps be accesed from a website ...say if the vechile with the gps device is numbered 1 and if i want to knw its loctaion from a website are there any codings in such a way that if i enter 1 in my website i can access to the google map in which the location can be seen....If there is please tell me how to do it

Submitted by Harish on Fri, 05/18/2018 - 16:01

Permalink

I have connected the hardware as shown in the article and uploaded the code as it is. I am getting compile time error as - can anybody help with this?
GPS_ArduinoUno_ESP8266.ino:22:12: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
char *test="$GPGGA";
^
GPS_ArduinoUno_ESP8266.ino: In function 'void check4IP(int)':
GPS_ArduinoUno_ESP8266.ino:27:14: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
while(t2+t1>millis())
^
GPS_ArduinoUno_ESP8266.ino:31:36: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("WIFI GOT IP"))
^
GPS_ArduinoUno_ESP8266.ino: In function 'void get_ip()':
GPS_ArduinoUno_ESP8266.ino:48:31: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("STAIP,"))
^
GPS_ArduinoUno_ESP8266.ino: In function 'void connect_wifi(String, int)':
GPS_ArduinoUno_ESP8266.ino:86:27: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("OK"))
^
GPS_ArduinoUno_ESP8266.ino:79:7: warning: unused variable 'temp' [-Wunused-variable]
int temp=0,i=0;
^
GPS_ArduinoUno_ESP8266.ino: In function 'void loop()':
GPS_ArduinoUno_ESP8266.ino:179:32: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("0,CONNECT"))
^
GPS_ArduinoUno_ESP8266.ino: In function 'void get_gps()':
GPS_ArduinoUno_ESP8266.ino:250:9: warning: variable 'str_lenth' set but not used [-Wunused-but-set-variable]
int str_lenth=i;
^
GPS_ArduinoUno_ESP8266.ino:246:8: warning: variable 'x' set but not used [-Wunused-but-set-variable]
int x=0;
^
GPS_ArduinoUno_ESP8266.ino: In function 'void Send()':
GPS_ArduinoUno_ESP8266.ino:333:34: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("0,CLOSE"))
^
GPS_ArduinoUno_ESP8266.ino: In function 'void sendwebdata()':
GPS_ArduinoUno_ESP8266.ino:363:29: warning: deprecated conversion from string constant to 'char*' [-Wwrite-strings]
if(Serial1.find("OK"))

Submitted by Harish on Fri, 05/18/2018 - 16:08

Permalink

While uploading code in Arduino, do we have to keep ESP8266 in program mode, or are there any other settings, I am getting errors in the serial monitor. ESP8266 is not getting connected. Getting stuck at GETTING IP address.

Submitted by raymund on Mon, 06/04/2018 - 05:05

Permalink

Good day!
What is the porpuse of router?
Is it possible that if don't have a router used, can't connect to the google maps?

Submitted by bharath on Sat, 08/11/2018 - 17:58

Permalink

thank you for the detailed information..

and As per my obersevation in your code, your not using any AT commands for GPS with power ON of your GPS(AT+CGPSPWR=1) how that will work. it is my doubt please solve this, Thank you in advance.

Aswinth Raj.

I am really glad that you responded for my message,brother i am stuck in "getting iP" line.

I am not getting IP address of wifi module on serial monitor screen.

kindly help me,i am running exactly the same code provided here except the Baud rate which i changed to 115200 instead of 9600 because my wifi module does not connect to home wifi router at 9600 baud rate.

Thanks

 

 

HI

if it is possibal to send trackre data to aprs web in place fo googl map?

what changes to make for it

warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings] 

char *test="$GPGGA";

            ^

 In function 'void check4IP(int)':

 warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

       if(Serial1.find("WIFI GOT IP"))

                                    ^

 In function 'void get_ip()':

 warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

       if(Serial1.find("STAIP,"))

                               ^

 In function 'void connect_wifi(String, int)':

warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

       if(Serial1.find("OK"))

                           ^

 In function 'void loop()':

 warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

     if(Serial1.find("0,CONNECT"))

                                ^

 In function 'void Send()':

 warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

         if(Serial1.find("0,CLOSE"))

                                  ^

 In function 'void sendwebdata()':

warning: ISO C++ forbids converting a string constant to 'char*' [-Wwrite-strings]

         if(Serial1.find("OK"))

                             ^

 

Hello Saddam,

Thanks for this useful tutorial. I have one question for you. If we need to contineously monitor the GPS location of a vehicle, we need to contineously feed the GPS coordinates to the google map right? As of now, I believe that we need to refresh the google map page to update the new location in the map, right? Do you have any idea how we can do this? If so pease post it.

 

Thanks in Advance..

Melvin