johnwasser:
Try this to see what data, if any, is arriving from the GPS:#include <SoftwareSerial.h>
SoftwareSerial nss(6, 255); // Yellow wire to pin 6
void setup() {
Serial.begin(115200);
nss.begin(4800);
Serial.println("Reading GPS");
}
void loop() {
if (nss.available()) {
Serial.write(nss.read());
}
}
This works I'm able to receive data is there a way to hook this up to a mega though?
The above link is dead.
Thanks in advance