Skip to content

Instantly share code, notes, and snippets.

@e-Gizmo
Last active October 17, 2017 10:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save e-Gizmo/7819058 to your computer and use it in GitHub Desktop.
Save e-Gizmo/7819058 to your computer and use it in GitHub Desktop.
/*
GPS Test
Codes by:
e-Gizmo Mechatronix Central
http://www.e-gizmo.com
*/
void setup()
{
// Open serial communications and wait for port to open:
Serial.begin(9600);
}
void loop() // run over and over
{
if (Serial.available())
Serial.write(Serial.read());
}
@Lalay17
Copy link

Lalay17 commented Oct 20, 2016

theres an error in the program

@e-Gizmo
Copy link
Author

e-Gizmo commented Oct 17, 2017

Thanks. its modified. try it again.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment