Previously I built a project where I connected a Neo-6M to an Arduino, but this time around, I wanted to show how to use a GPS with the Raspberry PI. Now there are several USB solutions, and apps that work with them, but I wanted to show how to use a $20 GPS module with a a serial UART, and Python code to decode the NMEA strings. Then you can write your own GPS interface, or combine the data with Google Maps.
Parts Needed:
Raspberry PI (any version)
Raspberry Pi accessories like a >1a 5v power supply, SD Card, keyboard, mouse, and a HDMI monitor are needed for any RPI project.
Step 1: Electrical Connection
The first step is to connect the GPS module to the Raspberry PI. There are only 4 wires (F to F), so it's a simple connection.
Neo-6M RPI
VCC to Pin 1, which is 3.3v
TX to Pin 10, which is RX (GPIO15)
RX to Pin 8, Which is TX (GPIO14)
Gnd to Pin 6, which is Gnd
Step 2: Turn Off the Serial Console
By default, the Raspberry Pi uses the UART as a serial console. We need to turn off that functionality so that we can use the UART for our own application.
Open a terminal session on the Raspberry Pi.
The first thing we will do is backup the file cmdline.txt before we edit it.
sudo cp /boot/cmdline.txt /boot/cmdline_backup.txt and press Enter.
The we need to edit cmdlint.txt and remove the serial interface.
Type in sudo nano /boot/cmdline.txt and press Enter.
Delete console=ttyAMA0,115200 and save the file by pressing Ctrl X, Y, and Enter.
Now type in sudo nano /etc/inittab and press enter.
Find ttyAMA0 by pressing Ctrl W and typing ttyAMA0 on the search line.
When it finds that line, press home, insert a # symbol to comment out that line, and Ctrl X, Y, Enter to save.
Type sudo reboot and press Enter to restart the Pi.
Step 3: Testing the GPS
Before we start writing our own code, let's test the GPS by using some off the shelf programs.
Open a terminal session and type sudo apt-get install gpsd gpsd-clients and press Enter.
After that installs, let's start the serial port:
Type stty -F /dev/ttyAMA0 9600 and press Enter.
Now start GPSD:
Type sudo gpsd /dev/ttyAMA0 -F /var/run/gpsd.sock and press Enter.
Now display by typing cgps -s and press Enter.
Step 4: Writing Your Own Python App
Now that I know the GPS module works, I want to write my own software, so that I can act on the values I'm reading. Coming Soon ......
Step 5: Using a Small LCD Display
For best results, a gps sensor needs to be outdoors. But I really don't want to drag my 42" HDMI monitor outside. I'll be adding a 2.8" LCD to this project soon!
Share
Hesham_Gaber made it!
44 Discussions
Question 6 months ago on Step 4
Please tell me how to write the data into excel sheet
11 months ago
In JESSY and STRETCH I had to:
sudo nano /etc/default/gpsd
USBAUTO="false"
DEVICES="/dev/serial0"
fabiotnt already mentioned this in his reply to DannielS1
1 year ago
hey everyone, having hard time to talk to neo-m8n (6m)
i have tried
Select Advanced Options -> Serial -> No (disable)
Then Advanced Options -> SPI -> Yes
then reboot
tried tty and Serial1 still no luck, running raspbian july 2017v
Reply 1 year ago
Try to use ttyS0
To check ttySO communication:
To check baud rate
Then to check communication:
2 years ago
para la raspberry pi 3 ya no usa el ttyAMA0 si no el ttyS0 este programa solo funciona en raspberry pi 2 y 1, en la 3 no... HELP!!!!
Reply 1 year ago
Tiene que cambiar lo dispositivo en cgsp config.
nano /etc/default/gpsd
cambie ttyAMA0 por ttyS0
Reply 2 years ago
Add device tree to /boot/config.txt to disable the Raspberry Pi 3 bluetooth.
sudo nano /boot/config.txt
Add at the end of the file
dtoverlay=pi3-miniuart-bt
Exit the editor saving your changes and then:
sudo reboot
1 year ago
Very good I'ble. Simple and objective, just one page. Thanks!
1 year ago
Have anyone had the problem that after sudo cat /dev/serial0 to see if the GPS is working just fine via the UART there is a list of proper data, and after some time suddenly it stops working and returns to the terminal?
1 year ago
Just FYI for Raspian Jessie, to turn off the Serial Console and turn on the SPI interface, you can just use raspi-config:
$ sudo raspi-config
Select Advanced Options -> Serial -> No (disable)
Then Advanced Options -> SPI -> Yes (enable) & Yes again (load kernel module)
Select Finish and Reboot
You can now skip all of Step 2.
Check the port using:
$ sudo stty -F /dev/ttyAMA0
speed 9600 baud; line = 0;
-brkint -imaxbel
For further info, try the Adafruit tutorial
https://learn.adafruit.com/adafruit-ultimate-gps-hat-for-raspberry-pi/use-gpsd
1 year ago
I have a problem finding ttyAMA0, I only had tty1, which I then deleted. But I could not find it when I was searching for it. And when trying to test the gps i wrote both tty -F/dev/ttyAMA0 9600, and tty -F/dev/tty1 9600, and non of them worked. Help?
Reply 1 year ago
i got same issue with you MartineH1
Reply 1 year ago
I found out that my serial port is called serial0, so you should try that. So try writing -F /dev/serial0 9600 instead.
Reply 1 year ago
thank you MartineH1,
now, i have a new problem. i can't find anything when i type "sudo nano /etc/inittab"
what should i do?
Reply 1 year ago
I don't think the inittab is in use anymore on the Raspberry Jessie. Which Raspi do you have? And what do you want to do?
1 year ago
i use pi 3 B. i cant find the ttyAMA0. what should i do Mr.sspence?
1 year ago
Waiting for your step 4 & step 5 to be posted!
2 years ago
Hi, I am not getting the data on the screen. After performing all the steps when i give command cgps -s i get the screen with no data in it. I am using raspberry pi 3. Also when i performed sudo nano /etc/inittab step i did not get any data in the file to comment. Please let me know if i am missing on anything. On a separate note I want to read this data and push to Azure IOT hub. I don't have any FTDI cable hence i was using this approach without FTDI cable. I appreciate your help in this regard too.
Thanks
Sunil Rathod
Reply 2 years ago
same with me
Reply 2 years ago
please check this page. It works for me.. Raspberry pi 3 and Neo 6M GPS
https://www.raspberrypi.org/forums/viewtopic.php?f=44&t=51788