Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ShawnHymel
Created July 26, 2017 22:36
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ShawnHymel/ebf85636c062b7a235dc460bcfb78177 to your computer and use it in GitHub Desktop.
Save ShawnHymel/ebf85636c062b7a235dc460bcfb78177 to your computer and use it in GitHub Desktop.
GPS Raw NMEA
#include <SoftwareSerial.h>
SoftwareSerial soft(10, 11); // Rx, Tx
void setup() {
Serial.begin(9600);
soft.begin(9600);
}
void loop() {
String msg = soft.readStringUntil('\r');
Serial.print(msg);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment