TOP Contributors

  1. MIKROE (2653 codes)
  2. Alcides Ramos (351 codes)
  3. Shawon Shahryiar (307 codes)
  4. jm_palomino (112 codes)
  5. Chisanga Mumba (90 codes)
  6. S P (73 codes)
  7. dany (71 codes)
  8. MikroBUS.NET Team (35 codes)
  9. NART SCHINACKOW (34 codes)
  10. Armstrong Subero (27 codes)

Most Downloaded

  1. Timer Calculator (136705 times)
  2. FAT32 Library (69916 times)
  3. Network Ethernet Library (55929 times)
  4. USB Device Library (46254 times)
  5. Network WiFi Library (41882 times)
  6. FT800 Library (41141 times)
  7. GSM click (28975 times)
  8. PID Library (26407 times)
  9. mikroSDK (26354 times)
  10. microSD click (25351 times)
Libstock prefers package manager

Package Manager

We strongly encourage users to use Package manager for sharing their code on Libstock website, because it boosts your efficiency and leaves the end user with no room for error. [more info]

< Back
Project

Using a GPS Click on a Raspberry Pi

Rating:

5

Author: Andrew Hazelden

Last Updated: 2016-02-17

Package Version: 1.0.0.0

Category: GPS

Downloaded: 917 times

Followed by: 3 users

License: MIT license  

gps2udp is a script that connects a MikroElektronika GPS click board via USB to a Raspberry PI. The serial GPS data is pushed out through a UDP socket onto the network interface. The GPS is set to run at 115200 baud using the stty command.

No Abuse Reported

Do you want to subscribe in order to receive notifications regarding "Using a GPS Click on a Raspberry Pi" changes.

Do you want to unsubscribe in order to stop receiving notifications regarding "Using a GPS Click on a Raspberry Pi" changes.

Do you want to report abuse regarding "Using a GPS Click on a Raspberry Pi".

  • Information
  • Comments (0)
DOWNLOAD LINK RELATED COMPILER CONTAINS
Other ARM Compilers
  • lib
  • src
  • exa
  • hlp
  • hex
  • sch
  • pcb
  • doc

Project Blog

The Raspberry Pi and the GPS Click

The Raspberry Pi and the GPS Click

This is a screenshot showing a USB serial connection from a GPS Click board to a Raspberry Pi.

View full image

Installation

Step 1. Install the supporting serial libraries on the Raspberry Pi:

       sudo apt-get install setserial netcat screen

Step 2. Copy the script gps2udp.sh to your raspberry pi.

Step 3. Change the permissions on the gps2udp.sh script so it will run:

     chmod 777 gps2udp.sh

Step 4. Start the script from the command prompt:

     ./gps2udp.sh

Running gps2udp

Running gps2udp

The gps2udp.sh script makes it simple to connect to the GPS Click board on Raspbian Linux.

View full image

Connecting to the UDP socket

Once you have started the gps2dps.sh script on the Raspberry Pi you can connect to the gps datastream using a UDP socket from any computer on your network.

Viewing UDP data in mikroC

The easiest way to view a UDP datastream is to use the mikroC UDP terminal program. It is found in the Tools > UDP Terminal menu.

Open the UDP Terminal

Open the UDP Terminal

Open the mikroC Tools Menu and start the UDP terminal.

View full image

Start by typing in the ip address for the raspberry pi. In my case this is 192.168.1.137

Enter the port 36700 for the UDP connection.

To start the connection you need to send a bit of data over the UDP socket. Type "1" in the send text field and click the "send" button. GPS data should start flowing into the receive window.

Connect to the Raspberry Pi.

Connect to the Raspberry Pi.

You can connect to the Raspberry Pi using the UDP terminal.

View full image

Linux/Mac/Cygwin Command Line You can also connect to the Raspberry PI hosted GPS click from your desktop system with a tool called netcat. Tip: You need to have the full-featured version of nc / netcat installed that supports UDP connections.

Viewing UDP Data

Viewing UDP Data

The Linux terminal window can be used to viewing the live UDP data too.

View full image

My Raspberry Pi has an ip address of 192.168.1.137 and the UDP port is 36700.

To start the desktop connection to the Raspberry Pi hosted GPS click open the terminal and type in:

     netcat -u 192.168.1.137 36700

or

     nc -u 192.168.1.137 36700

Once the connection has been made you need to press the enter key once to start the UDP data flowing. When you are done you can close the network connection on the desktop by pressing Control-C.

ALSO FROM THIS AUTHOR

ACH SpeakUp Multimeter Demo

5

This project shows how to use the SpeakUp Click board as a standalone device with a multimeter acting as a display to show feedback from each of the voice commands. There is an accompanying 10.5 minute long step-by-step video tutorial that shows how to create this project from the beginning.

[Learn More]

DigitalPOI - Persistence of Vision Display

24

The Digital Poi Spinning device can write text, draw small icons, and display patterns as you spin it around. It works by encoding your visual data onto a series of 8 LEDs that are spun like a fire spinning poi.

[Learn More]

Mikromedia Panorama Viewer

0

The Mikromedia Panorama example displays a 1920x240px cylindrical panorama on the Mikromedia dsPIC33 or PIC32 screen. The panorama example was created to show how the VisualTFT resource collection feature can be used to load sliced images. The code was written using VisualTFT and MikroC Pro.

[Learn More]