He created a simple GPS logging device using an Arduino and a GPS module.
I built a similar device using currently available components and found that there was a lot to learn.
My first project used the following components:
- Arduino Uno
- Venus GPS module ( from Sparkfun. https://www.sparkfun.com/products/11058 )
I wanted to program the GPS to report it's position more frequently than the 1 HZ (Once per second).
I also struggled with the Arduino UNO, which only has one UART and uses SoftwareSerial for its secondary Serial connections did not allow me to talk to the device and program it.
I found that I needed to purchase an improved device called a Teensy, which has additional UART serial ports.
This worked like a charm and I was able to load a simple shield to echo between the 2 serial ports (the console and the GPS module) and use the program GPS Viewer to graphically view the data and to program the device.
At the time, the currently available Teensy was version 3.1, which runs at 36mhz.
Diagram and Code to follow...