Questions tagged [tinygps]

A gps library providing: position, date, time, altitude, speed and course

Official site http://arduiniana.org/libraries/tinygps/

88 questions
4
votes
3 answers

Arduino shield stacking

I have an Arduino GSM Shield mounted on an Arduino Uno. Can I stack this GPS shield above Arduino GSM shield? Will there be any pin configuration problem? In GSM Shield hardware pin’s configuraton are as below: 0 - Not connected 1 - Not connected 2…
Manihatty
  • 395
  • 1
  • 5
  • 16
4
votes
3 answers

Do I need a bubble sort or something easier?

I'm using an Arduino Leonardo and a GPSTiny++ library to parse NMEA strings from my GPS receiver. In this chunk of code I'm averaging all satellite SNR numbers for satellites which are locked (Being used for navigation). The avg value provides some…
Dan
  • 43
  • 3
3
votes
4 answers

uBlox Neo 6M GPS module not responding

I started recently working with a uBlox Neo 6M GPS module (data sheet http://www.u-blox.com/images/downloads/Product_Docs/NEO-6_DataSheet_%28GPS.G6-HW-09005%29.pdf). I connected it to an Arduino Uno as shown: GPS Arduino VCC-- 3.3V RX -- D11 TX --…
Alrro
  • 39
  • 1
  • 1
  • 2
3
votes
2 answers

NEO 6M GPS speed

I am doing a project using a NEO 6M GPS with my Arduino LilyPad. I programmed it already, and it's working well except of the speed. I get stuck on fixing this. I wonder why the value is never getting zero although I am not moving to my place. I…
3
votes
1 answer

Faster GPS update rate for parser

I really hope somebody can help me. I need help making my code receive updates faster to the parser...I need the received GPS coordinates (Latitude and Longitude) to update 5 or more times a second, currently it locks when stationary. Can somebody…
mosawi
  • 171
  • 1
  • 2
  • 4
2
votes
0 answers

GPS speedometer with NEO 6M - latency issue

I have built a speedometer, based on this youtube video: https://www.youtube.com/watch?v=gKuJxjxNP-k&t=34s The speedometer is for a car, so it needs to be in real-time and accurate, with the actual speed that the car reads. The speedometer is built…
cool bean
  • 31
  • 3
2
votes
1 answer

Why HDOP in TinyGPS++ is less than 1?

HDOP is supposed to be greater than 1: https://en.wikipedia.org/wiki/Dilution_of_precision_(navigation) But I get HDOP about 0.7. What does it mean? Where can I found explanation of the output parameters?
2
votes
1 answer

How to use tinygps.h library to measure distance? using NEO6mv2

any reference site for the format code for tinygps.h to measure distance? or any codes for tinygps.h for measuring distance i'm just a beginner in learning arduino thank you
2
votes
1 answer

GPS Module Outputting Question Marks in Serial Window

I've got a uBlox Neo 7N GPS Module and configured it so if theres is no incoming data print no location but if there is print the latitude and longitude. However it's printing ?,?. So I'm assuming it's wired correctly as I'm getting an output…
Explorex
  • 143
  • 3
2
votes
2 answers

Sending PUBX commands to GPS Board (Ublox NEO-6M) through SoftwareSerial

I am having trouble parsing NMEA sentences coming from a GY-NEO6MV2 board (https://www.cytron.io/p-gps-neo6mv2), using the TinyGPS (https://github.com/mikalhart/TinyGPS) library. The GPS board itself is connected to an Arduino Pro Mini 3v3 8MHz…
angularchobo
  • 121
  • 1
  • 3
2
votes
1 answer

Adafruit gps breakout module help

I am intending to show the initial, searching for signal..., screen until the location is updated and then show the location on the lcd. However, even after the led on the gps indicates a satellite fix, the screen never leaves the searching for…
2
votes
2 answers

uBlox LEA 6H and UNO no data

While using NEO 6M and getting close-to-perfect accuracy, connecting the 3dr uBlox LEA 6H shows incoming characters, but gibberish data (at 38400) like it is connecting to a wrong baud rate (although it isn't, i've checked it with u-center and works…
user24142
  • 23
  • 4
2
votes
0 answers

GPS logging on SD card using TinyGPS

I'm a beginner in Arduino world and I want to create a simple SD datalogger that works with GPS (module NEO-6M) and light sensor. I know there are a number of tutorials on GPS logging including: Create a GPS Data Logger Using The Arduino (Bob…
Geek On Acid
  • 121
  • 1
  • 1
  • 3
2
votes
0 answers

NEO 6M doenst provide coordinates

I do a school project (CanSat) it's an international project. But my problem is my GPS. I tried 2 different codes. Both they say the GPS is connected. They GPS led doesn't provide any light. wiring: UBlox Neo 6M Arduino leonardo Rx (GPS) to port…
2
votes
2 answers

Assigning float to 10 decimal place for longitude,latitude

I'm quite a novice in arduino programming. I am doing a small home project and I am using sim808 to obtain GPS data. My question is quite simple but i can't find any solution online. Serial.print("latitude :"); Serial.println(sim808.GPSdata.lat,…
user32149
  • 21
  • 3
1
2 3 4 5 6