Arduino GPS Oled

by jmorles in Circuits > Arduino

13951 Views, 39 Favorites, 0 Comments

Arduino GPS Oled

20171231_121717.jpg
2.jpg
GPS Ubox Neo 6m

The NEO-6 module series is a family of stand-alone GPS receivers featuring the high performance u-blox 6

positioning engine. These flexible and cost effective receivers offer numerous connectivity options in a miniature 16 x 12.2 x 2.4 mm package. Their compact architecture and power and memory options make NEO-6 modules ideal for battery operated mobile devices with very strict cost and space constraints. The 50-channel u-blox 6 positioning engine boasts a Time-To-First-Fix (TTFF) of under 1 second. The dedicated acquisition engine, with 2 million correlators, is capable of massive parallel time/frequency space searches, enabling it to find satellites instantly. Innovative design and technology suppresses jamming sources and mitigates multipath effects, giving NEO-6 GPS receivers excellent navigation performance even in the most challenging environments. UART NEO-6 modules include one configurable UART interface for serial communication Configuration Boot-time configuration NEO-6 modules provide configuration pins for boot-time configuration. These become effective immediately after start-up. Once the module has started, the configuration settings can be modified with UBX configuration messages. The modified settings remain effective until power-down or reset. If these settings have been stored in battery-backup RAM, then the modified configuration will be retained, as long as the backup battery supply is not interrupted. NEO-6 modules include both CFG_COM0 and CFG_COM1 pins and can be configured as seen in Table 6. Default settings in bold.

Theory

maxresdefault.jpg

TinyGPS++ is a new Arduino library for parsing NMEA data streams provided by GPS modules.
Like its predecessor, TinyGPS, this library provides compact and easy-to-use methods for extracting position, date, time, altitude, speed, and course from consumer GPS devices. However, TinyGPS++’s programmer interface is considerably simpler to use than TinyGPS, and the new library can extract arbitrary data from any of the myriad NMEA sentences out there, even proprietary ones.

Library:
http://arduiniana.org/libraries/tinygpsplus/

Further Info:

https://www.u-blox.com/en/product/neo-6-series

Schematics-materials

1.jpeg
sch.png
arduino-nano.jpg
Kurz-vorgestellt-0.96-Zoll-OLED-Display-I2C-mit-128x64-Pixel-blog.simtronyx.de_-1024x512.jpg

-Arduino Nano

-0.96 Oled Display

-Bradboard

-2 2.2K resistors

-Jumper Cables

- Arduino GPS Ubox neo 6m

Program

stickers_logo_text.png

The most important thing is to test the clock actualization

The gps can tke up to 20 min to 60 min

Remember we need to triangulate the signal, ergo need to syc with 3 sattellites

Try to change this line if it do not work:

Option A

#define GPS_BAUD 38400

Option B

#define GPS_BAUD 9600

Option C

#define GPS_BAUD 4800

Test

20171231_121739.jpg
20171231_121809.jpg

At first you will get

Date: 0/0/2000

Time: 00:00:00

if this values update, ti meas that the gps liked at least to one Sat.

then youll get the current coordinates of the gps...

you can google it and then find it on the world map.

Success!!!