Project 1   Where-It-Goes

 

Tag Where-It-Goes to your dog, cat, quadcopter, vehicle, etc., anything that moves to record and replay its location and time history. See the trace on Google Map with your smartphone, tablet, or PC.

 

Functional Specification:

Where-It-Goes captures GNSS signals, generates coordinate information, and store the information in the NMEA format to an SD card. The user takes the SD card and uses an NMEA-to-KML program to transform the trace information to the KML format, which can then be displayed on Google Map.

Hardware Required:

  1. NavSpark or NavSpark-GL or NavSpark-BD
  2. Adapter Board for NavSpark
  3. Internal GNSS Active Antenna
  4. Lithium Battery
  5. Micro SD Card Class 10 or higher

Software Required:

  1. NavSpark Board Manager 1.0.3 or later
  2. Windows GNSS Viewer Program 2.0.180 or later
  3. All the source code of the project can be downloaded here.

Information stored in NMEA format:

  1. Waypoints
  2. Direction
  3. Speed
  4. Altitude
  5. UTC Time
  6. GSV messages

Operating Modes:

When Where-It-Goes is running, the satellite LED (marked as "SAT LED") on NavSpark has 3 toggling modes to display different logging status

1. Continuous Light - Power on, but there is no position fix.

2. Slow Flash - LED toggle 2 times in one second. There is a position fix, but the SD card logger is not available.

3. Fast Flash - LED toggle 4 times in one second. There is a position fix, and the SD card logger is writing results in NMEA.

The SD card logging will stop after there is no position fix.

 

Let's start to build Where-It-Goes. You can modify the example code to customize the functions and make your own unique logger.

 

Format SD Card:

The SD card needs to be formatted in FAT32. Normally, most SD cards are already formatted correctly out of the box.

 

Assemble Where-It-Goes:

1. Solder and connect the Adapter Board to the lithium battery.

2. Connect NavSpark with the Adapter Board.

3. Place the SD card into the SD card slot.

4. Connect the antenna to NavSpark.

 

 

Prepare and Upload the Sketch:

The example code can be downloaded here. For the code to work, you must install the NavSpark Board Manager 1.0.3 or later using URL "http://navspark.mybigcommerce.com/content/package_navspark_index.json".

The Sketch:


Code Description:

Overview

This project demonstrates the following techniques - Get NMEA sentence from GNSS library, create folder, create file, append text to an existing file, and toggle NavSpark built-in LED.

Project Architecture

//Global variables and structure defined

#include …

#define CONTINUOUS_WRITE        0

static String dataFolder("/LogData");  //Default NMEA Log folder name

//setup() function

void setup() {…}

//project function for timer

void timer0_func(void) {…}

//Main loop function

void loop() {…}

//project function for NMEA generation.

int GenerateNMEA(String& logContent) {…}

//project function to create log file

void CreateLogFile() {…}

//GNSS library function task_called_after_GNSS_update

void task_called_after_GNSS_update(void) {…}

 

Global scope is macro defined, globally defined, and structurally defined.

Function setup() to initialize GNSS library, Serial, SD Card, LED GPIO.

Main loop function loop() to control LED toggling.

Function task_called_after_GNSS_update() to process NMEA and store them in SD Card.

Project functions that is written for this project need e.g. timer0_func, GenerateNMEA, CreateLogFile.

 

Global Scope

Global variables are defined outside any functions, usually on top of the program. In this project it's defined before function setup().

The table below is the description of items in global scope.

 
Item
Type
CONTINUOUS_WRITE Macro Define in 1 to write NMEA sentence in the same file,
define in 0 to write in separate file when lose position fix.
dataFolder String object Folder name to store NMEA files.
logFile String object Full path name of NMEA file storage. It’ll generate by
CreateFile() function.
fileCreated Boolean variable A Boolean variable to record file creation status.
NmeaInterval struct define Define this structure to store NMEA sentence interval
and counter.
nmeaInterval / nmeacount NmeaInterval object These two objects control NMEA logger write interval is synchronized with the default Serial1
output.
LogStatus struct define Define for state machine.
logStatus LogStatus object Use for state machine control.
 

setup() function

This function can be divide to into four parts and described below.

Initialize GNSS device parameter - Initialize GNSS device parameter for this project. You can change NMEA sentence interval here. The default is output GGA/GSA/GSV/RMC every 1 second.

Initialize Serial for console – This project will display some message in console for debug. If you don’t need it, you can remove all of them.

Initialize LED – This project toggles build-in LED for display log status. Drive GPIO 0 to output mode and turn it on.

Initialize SD Class for SD Card using - Initialize SD Class and create a folder for NMEA files storage.

 

loop() function

This project only control LED toggle timer when log status is changed. If you want to change LED toggle frequency, you can modify it here.

 

task_called_after_GNSS_update function

This function implements the major feature of this project. A brief description of the procedure is explained below.

  • Get NMEA interval setting form GnssConf.
  • Generate NMEA sentence to logContent – a String class instance.
  • Update fix mode to logStatus – a LogStatus structure instance.
  • Create a file for NMEA sentence wrote if need.
  • Write NMEA sentence to file.

 

Other support functions

Where-It-Goes writes two functions to assist.

GenerateNMEA – Countdown each NMEA sentence interval (GGA, GSA, GSV, RMC), and generate NMEA sentences to store in logContent object.

CreateLogFile – Create a file for storage. If you want to change naming rule of file name, you can modify this function.

 

 
 

 

Now we are ready to give Where-It-Goes a try. We mount Where-It-Goes on a RC airplane and log the 3D locations of its flying path.

 

A new log file will be created when there is a position fix, using the date and UTC time as the file name. When the position fix is lost, the file will be closed. Another log file will be created when the position fix is reestablished.

 
 

 

After logging, the data can be converted from NMEA to KML using GNSS Viewer and shown on Google Earth.

 

Make sure the satellite LED light of NavSpark is not flashing, i.e., there is no position fix, before you remove the SD card so the log files are already closed and will not be corrupted.

Reading Logged Data & Converting Formats:

Now that you have removed the SD card, place it in your computer's SD card reader and open GNSS Viewer to convert it to KML. You can import KML files into programs like Google Earth.

The following steps will show you on how to convert log data to KML and import into Google Earth.

1. Open GNSS Viewer and select "Converter" -> "KML"

 
 

2. Press "..." button to select datalog folder in SD card drive

 
 

3. Choose the convert options (in the following example, we checked "3D KML", "Point list", "No Point Text", and "Detail information")

 
 

4. Press "Convert" to finish the conversion

5. Browse the SD card drive, and you can see some KML files in the datalog folder. Double click the KML file to import it into Google Earth.

 
 

6. Now Where-It-Goes data is displayed on Google Earth

 
 

 

Q&A and Additional Ideas

 

1. Can NavSpark-mini be used?

Yes; however, the Adapter Board used here is designed to work with NavSpark so you may need to use jumper wires. Note that NavSpark-mini doesn't have a satellite LED (it only has a power LED). If you want to show operating modes, you can add an LED to one of the GPIO pins, e.g., GPIO4, and set "int ledPin = 4;" in the example code.

2. How to safely insert and remove the SD card?

A simple rule is not to insert or remove the SD card if the satellite LED light is flashing. When there is a position fix, NavSpark will try to write data to the SD card. Insert or remove the SD card at that time may corrupt the log files.

3. How to stop the logging?

An easy way to stop the logging is to disconnect the antenna and lose the position fix. The log file will then be closed. Alternately, you may choose to implement a stop button via GPIO.

4. How to detect low voltage?

Low voltage operation may damage the SD card when battery is running low. You can use a low voltage detection circuit via GPIO to detect low voltage and stop the logging.