Real Time GPS Location Tracker using ESP8266 & Blynk with Google Maps

Real Time GPS Location Tracker using ESP8266 & Blynk with Google Maps

How To Electronics

2 года назад

59,011 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

wwe9865
wwe9865 - 21.10.2023 11:10

Instead of l86 any other module could be used

Ответить
Milad Khaled
Milad Khaled - 06.10.2023 15:40

Except Blynk app, the ESP also should be connected to the internet

Ответить
MT
MT - 24.09.2023 14:54

can you use Neo-8M?

Ответить
Abdullah Ahwaz
Abdullah Ahwaz - 14.09.2023 10:39

can it be use with arduino uno also?

Ответить
sudhi s pillai
sudhi s pillai - 07.08.2023 19:00

Is it anyway work with esp32

Ответить
Ayesha Khatun
Ayesha Khatun - 21.07.2023 10:08

Sir please tell me. Is there another app like blynk?

Ответить
Pre DCR for LTP's Andhra Pradesh
Pre DCR for LTP's Andhra Pradesh - 13.07.2023 21:20

Can we create an application like blynk.

Ответить
osmin varela
osmin varela - 07.07.2023 07:14

new version 2023?

Ответить
Alex Ptvz
Alex Ptvz - 07.07.2023 06:57

works well thank you!

Ответить
Smit Patel
Smit Patel - 05.07.2023 02:44

Is there any possibility to use blynk for GPS tracking using raspberry

Ответить
Rohan Funde
Rohan Funde - 10.06.2023 10:59

Brother over all price ?

Ответить
PUNITH GN
PUNITH GN - 09.06.2023 07:50

Bro, I am planning to build a real time GPS tracking device for my Kid, could you please let me know how to do it?

Ответить
Chris Brown
Chris Brown - 02.04.2023 18:39

Can it show altitude

Ответить
Guillermo Nudelman
Guillermo Nudelman - 14.03.2023 19:44

is it possible to achieve this with no wifi? like using a sim card or something?

Ответить
Esteban Noboa
Esteban Noboa - 10.01.2023 03:32

Can you conect more than 1 ESP8266 and see that two or tree device?

Ответить
Justice Mkandawire
Justice Mkandawire - 17.11.2022 10:51

thank you..... but please help me on how i can set up my gps tracker on new blynk iot app particulary on datastream part.

Ответить
Robin K.
Robin K. - 15.11.2022 03:48

Neat tutorial, but this is pointless when you need a wifi hotspot

Ответить
Durga Sekhar
Durga Sekhar - 28.10.2022 13:22

Bro cost of buying map in blynk app
Please tell the prices

Ответить
Lokesh Chowdary
Lokesh Chowdary - 20.10.2022 07:27

sir can you make in new blynk 2.0

Ответить
Kostas Avgeros
Kostas Avgeros - 22.08.2022 17:54

Hi there!
I am using Neo-6M GPS Module, the result i get is up to 2 digits not 6 digits after the decimal point. Any ideas ?

void displayInfo()
{
if (gps.location.isValid() )
{
sats = gps.satellites.value(); //get number of satellites
latitude = (gps.location.lat()); //Storing the Lat. and Lon.
longitude = (gps.location.lng());
velocity = gps.speed.kmph(); //get velocity
bearing = TinyGPSPlus::cardinal(gps.course.value()); // get the direction

Serial.print("SATS: ");
Serial.println(sats); // float to x decimal places
Serial.print("LATITUDE: ");
Serial.println(latitude, 6); // float to x decimal places
Serial.print("LONGITUDE: ");
Serial.println(longitude, 6);
Serial.print("SPEED: ");
Serial.print(velocity);
Serial.println("kmph");
Serial.print("DIRECTION: ");
Serial.println(bearing);

Blynk.virtualWrite(V1, String(latitude, 6));
Blynk.virtualWrite(V2, String(longitude, 6));
Blynk.virtualWrite(V3, sats);
Blynk.virtualWrite(V4, velocity);
Blynk.virtualWrite(V5, bearing);
myMap.location(move_index, latitude, longitude, "GPS_Location");
}
Serial.println();
}

Ответить