I am presently trying to imitate a Find Home Detector seen on Hackaday.com, with a couple improvements, but I'm having trouble getting a response from the GPS Minimod I'm using.
I have an LED ring (Mayhew labs) indicating the compass module readout and an LCD screen giving a text-based readout of the same bearing (for the moment, it'll show distance later on). I looked around for some code related to the Minimod that I could reverse engineer to get what I need, but it doesn't seem all that common.
Currently, the Minimod is hooked up to VCC to D24, Gnd on Gnd, and TX to D22 on my Arduino Mega 2560. What I need to find out are the coding requirements for using it, and ideally some code examples of its usage.
The GPS is a Sparkfun GPS Minimod, so it has only a VCC, TX, and Gnd line and there is appallingly little documentation on its usage available.
I connected VCC to the 5V line and the TX to one of the RX ports on the Mega. As it turns out the GPS constantly spews the data it retrieves into the serial port through the TX, no matter what you otherwise want it to do, so you can't just ask for one specific data point. The operating voltage for the Minimod is 3.3-6V, so I may attach it to a digital port at the VCC again to disable it when its not in use and save some power.
Consequently, I've had to code an array system that starts with the GGA header of the data and iterates with the comma separation of it to isolate each individual data point in the array so I can extract the latitude and longitude. But at least the end result is I've gotten the damn thing working.