Skip to content

Commit 31ea291

Browse files
committedFeb 18, 2016
Merge pull request #2 from kennethlimcp/fix/quotes
fix: readme and basic eg header include
2 parents 867ee21 + a201450 commit 31ea291

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# TinyGPS++
22

3-
TinyGPS++ library for www.particle.com photon and electron.
3+
TinyGPS++ library for www.particle.io devices such as the Photon and Electron.

‎firmware/examples/BasicExample/BasicExample.ino

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
#include <TinyGPS++/TinyGPS++.h>
2-
/*
1+
#include "TinyGPS++/TinyGPS++.h"
2+
/*
33
This sample sketch should be the first you try out when you are testing a TinyGPS++
44
(TinyGPSPlus) installation. In normal use, you feed TinyGPS++ objects characters from
55
a serial NMEA GPS device, but this example uses static strings for simplicity.
@@ -41,7 +41,7 @@ void loop()
4141

4242
void displayInfo()
4343
{
44-
Serial.print(F("Location: "));
44+
Serial.print(F("Location: "));
4545
if (gps.location.isValid())
4646
{
4747
Serial.print(gps.location.lat(), 6);

‎spark.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
"name": "TinyGPS++",
33
"author": "Mikal Hart",
44
"license": "MIT",
5-
"version": "0.9.4",
5+
"version": "0.9.5",
66
"description": "A new, customizable Arduino NMEA parsing library http://arduiniana.org"
7-
}
7+
}

0 commit comments

Comments
 (0)
Please sign in to comment.