From 72ceed59bff8f89e94ccaaf23de67477f5bc595c Mon Sep 17 00:00:00 2001 From: Morten Nielsen Date: Mon, 10 Feb 2014 22:38:13 -0800 Subject: [PATCH] Update README.md --- README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/README.md b/README.md index dbaf9b8..c6db195 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,25 @@ Library for handling Bluetooth devices in Windows Store and Windows Phone, in pa This library makes it easy to connect and listen for NMEA messages from Bluetooth Devices in Windows Store and Windows Phone apps. +Currently supported devices: +- Generic GPS NMEA +- Trimble Laser Range Finder +- TruePulse Laser Range Finder + +The API is easily extensible with more NMEA message. Simply create a new class inheriting from "NmeaMessage" and use the NmeaMessageAttribute to tag it with the NMEA Message Token. + +Example: +``` +[NmeaMessageType(Type = "GPRMC")] +public class Gprmc : NmeaMessage +{ + protected override void LoadMessage(string[] message) + { + //Process message parts + } +} +``` + Usage - Windows Store =====================