Skip to content

Instantly share code, notes, and snippets.

@MattReimer
Created August 23, 2013 19:43
Show Gist options
  • Save MattReimer/6323217 to your computer and use it in GitHub Desktop.
Save MattReimer/6323217 to your computer and use it in GitHub Desktop.
A quick test of a serial-real GPS device
#include <SoftwareSerial.h>
void setup() {
Serial.begin(57600);
}
void loop() {
if (Serial.available()) {
Serial.write(Serial.read());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment