mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-01-20 23:50:18 +01:00
Update README.md
This commit is contained in:
parent
46971fc4c8
commit
7a4677da0b
|
|
@ -8,15 +8,15 @@ There's also generic support for NMEA files (for simulation/playback) and raw st
|
|||
This library makes it easy to connect and listen for NMEA messages from various Devices in Windows Store, Windows Phone and Windows Desktop apps.
|
||||
|
||||
Currently supported nmea messages:
|
||||
- Generic GPS NMEA (GPRMC, GPGGA, GPGLL, GPGSA, GPGSCV, GPRMB, GPRMC)
|
||||
- Garmin GPS NMEA (PGRME)
|
||||
- Generic GPS NMEA (GPRMC, GPGGA, GPGLL, GPGSA, GPGSCV, GPRMB, GPRMC, GPBOD, GPRTE)
|
||||
- Garmin GPS NMEA (PGRME, PGRMZ)
|
||||
- Trimble Laser Range Finder (PTNLA, PTNLB)
|
||||
- TruePulse Laser Range Finder (PLTIT)
|
||||
|
||||
The API is easily extensible with more NMEA messages. Simply create a new class inheriting from "NmeaMessage" and use the NmeaMessageType Attribute to tag it with the NMEA Message Token it supports.
|
||||
|
||||
Example:
|
||||
```
|
||||
```csharp
|
||||
[NmeaMessageType(Type = "GPRMC")]
|
||||
public class Gprmc : NmeaMessage
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue