Skip to content

Instantly share code, notes, and snippets.

@bleroy
Created January 24, 2017 21:58
Show Gist options
  • Select an option

  • Save bleroy/0966165c0e0f12cc8faacd074ec7c8d2 to your computer and use it in GitHub Desktop.

Select an option

Save bleroy/0966165c0e0f12cc8faacd074ec7c8d2 to your computer and use it in GitHub Desktop.
private void OnGGAEvent(object sender, GPS.GPSGGA GGA)
{
if (GGA.Quality != GPS.GPSGGA.FixQuality.noFix)
{
AltitudeTextBox.Text = GGA.Altitude.ToString();
LatitudeTextBox.Text = GGA.LatDegrees.ToString();
LogitudeTextBox.Text = GGA.LonDegrees.ToString();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment