Public Lab Research note


Add GPS logging to a Saturn V Rig

by cfastie | January 14, 2017 05:45 14 Jan 05:45 | #13850 | #13850

The Adafruit Ultimate GPS breakout board was reasonably easy to get working in no small part due to the online resources at Adafruit. When I could not figure out how to save GPS data to a US$1.00 eBay microSD board (now just $0.50 apiece), I ordered one from Adafruit and got that one working. At first I had the same problems with the Adafruit board, but persevered until I figured it out. It might be that the $0.50 eBay board will work fine if you know what you are doing.

The microSD card allows the Arduino sketch to save GPS location data at the same time the camera on the KAP rig takes a photo. The GPS data can later be written to the EXIF headers of the appropriate photo files (by matching the time stamps) using a program such as Geosetter, or used in other ways. The data logged to the SD card include a timestamp for each location entry.

Below are detailed instructions for adding this capability to a Saturn V Rig. The Saturn V Rig already has a power supply and an Arduino, so the additional weight required is about 25 grams and the additional cost is about US$50.00. These instructions assume that you have a working Saturn V Rig.

Materials

Tools

  • Soldering iron and solder
  • 3D printer (optional)

Step 1: Soldering

My approach is to solder on connectors, not wires. That way everything can be disconnected and used in different configurations. Instead, it is possible to solder wires to directly connect the Nano/SkyShield to the GPS and microSD boards.

  • Solder the header onto the Adafruit microSD breakout board. I used 90° male headers, but the supplied straight headers are okay.
  • Solder the header and the battery cage onto the Adafruit Ultimate GPS breakout board.
  • Solder the extra male headers onto the Arduino Nano and the SkyShield as in the photos below.

image description

Above: Additional male headers needed on the Nano. Pins D10, D11, and D12 (a three pin RC connector can be used for those pins). Pin D13 (I used a two pin header to strengthen the joint). The 5V and GND pins for power (I used a three pin header to strengthen the joint, and used a marker to make the GND pin black). This is not a standard way to add connections, but it can work if the soldering is done carefully. Reinforcing the solder joints with hot glue or epoxy is probably a good idea.

image description

Above: Two additional male pins are needed on the SkyShield. The GND and 5V pins are the same ones we added pins to on the Nano (These are the pins that will supply power to the GPS board and SD card board). I added a three pin header to strengthen the joint. I used a marker to make the GND pin black.

Step 2: Make the short wires

You can buy pre-made RC servo wires in various lengths or make your own. They should be about 3 to 4 inches long. I used wires with two- or three-pin female connections, but there are various ways to hook things up so the correct pins are connected. Below are the required connections.

microSD board Nano
5V 5V
GND GND
CLK D13
Do D12
Di D11
CS D10
GPS board SkyShield
VIN 5V
GND GND
TX D5
RX D3

Note: The D3 and D5 pins on the SkyShield are the yellow signal pins in the "S" row.

Step 3: Mount the housing and connect everything

The 3D printed housing can be printed from the "GPSbracket03.stl" file at Thingiverse. It attaches to the shoulder of the Saturn V Rig with two small screws (holes are pre-placed in the housing). Connect all of the wires and slide the GPS board into the uppermost slot from the back. Insert the SD board (with microSD card) into the lower slot from the front. A Velcro strap will wrap around everything to keep it in place.

image description

Above: All connections are made.

image description

Above: One Velcro strap holds everything in place. Cutouts in the housing reveal indicator LEDs on the GPS and SD boards.

Step 4: Load the sketch onto the Nano

The Arduino sketch I used is intended to operate everything on the Saturn V Rig. It should pan and tilt the rig and take a photo at each of 39 positions (covering most of the viewsphere). The pan-tilt-shoot sequence is appropriate for a Canon EOS M and should be modified for other cameras. Every time the camera shutter is triggered, GPS location data are written to the microSD card.

This sketch is a mashup of my pan-tilt code and Adafruit's code for the GPS board and microSD board. Adafruit's code is not well commented so I don't know what a lot of it does. The GPS logging seems to work, but the servo operation does not (still debugging). The sketch does not leave very much memory free, so very little can be added to this sketch without first improving memory handling. If I ever get it working I will post it here. [Update: I never got this to work. Operating servos and also doing serial communication (with the GPS) is fraught with error on 328p Arduinos.]

Preliminary test

I did a dry run and compared the Adafruit GPS data logged to a microSD card with a Garmin GPSmap 76CSx logging every five seconds. The Adafruit was logging every time the pan-tilt sequence told the camera to shoot which varies from every three to four seconds. I donned the essential gear and went for a walk.image description

Above: The testing instrumentation

image description

Above: Screenshot from Google Earth with the GPS tracks recorded by the two receivers. I walked around the pond and walked in a circle around a boulder and around a campfire ring (these can be seen in the Google Earth image).

The Adafruit system controlled by the SkyShield logged reliably to the microSD card during the walk. It wrote an NMEA sentence for each logging event (every few seconds). I used GPSBabel to convert the log file to a KML file and displayed the track in Google Earth. During this walk, the Adafruit GPS seems to have recorded a more accurate track than the old Garmin GPS receiver. This suggests that the Adafruit GPS board could provide reasonably good location data during aerial missions.

image description

Above: Closeup of the tracks where the Adafruit data is much more accurate than the Garmin data.


I did this Help out by offering feedback!


People who did this (0)

None yet. Be the first to post one!


1 Comments

Fantastic post! Would love to replicate this!

Reply to this comment...


Login to comment.