-
Notifications
You must be signed in to change notification settings - Fork 497
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Version 1.0.0: reorganize per new Arduino library standard, fix bug w…
…ith course in FullExample.ino
- Loading branch information
1 parent
2c9ac0b
commit 0a9d3c9
Showing
6 changed files
with
37 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,21 @@ | ||
{ | ||
"name": "TinyGPSPlus", | ||
"keywords": "gps", | ||
"description": "A new, customizable Arduino NMEA parsing library", | ||
"repository": | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/mikalhart/TinyGPSPlus.git" | ||
}, | ||
"frameworks": "arduino", | ||
"platforms": "atmelavr" | ||
} | ||
{ | ||
"name": "TinyGPSPlus", | ||
"keywords": "gps,NMEA", | ||
"description": "A new, customizable Arduino NMEA parsing library", | ||
"repository": | ||
{ | ||
"type": "git", | ||
"url": "https://github.com/mikalhart/TinyGPSPlus.git" | ||
}, | ||
"authors": | ||
[ | ||
{ | ||
"name": "Mikal Hart", | ||
"email": "[email protected]", | ||
"url": "http://arduiniana.org", | ||
"maintainer": true | ||
} | ||
], | ||
"frameworks": "arduino", | ||
"platforms": "*" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name=TinyGPS++ | ||
version=1.0.0 | ||
author=Mikal Hart | ||
maintainer=Mikal Hart<[email protected]> | ||
sentence=TinyGPS++ provides object-oriented parsing of GPS (NMEA) sentences | ||
paragraph=NMEA is the standard format GPS devices use to report location, time, altitude, etc. TinyGPS++ is a compact, resilient library that parses the most common NMEA 'sentences' used: GGA and RMC. It can also be customized to extract data from *any* compliant sentence. | ||
category=Communication | ||
url=https://github.com/mikalhart/TinyGPSPlus | ||
architectures=* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters