Blynk library for embedded hardware. Works with Arduino, ESP8266, Raspberry Pi, Intel Edison/Galileo, LinkIt ONE, Particle Core/Photon, Energia, ARM mbed, etc. http://www.blynk.cc/

Dependents:   Blynk_RBL_BLE_Nano Blynk_MicroBit Blynk_Serial Blynk_RBL_BLE_Nano

Revision:
9:7369ec77a3ea
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/WidgetGPS.h	Thu Jan 05 14:55:36 2017 +0200
@@ -0,0 +1,65 @@
+/**
+ * @file       WidgetGPS.h
+ * @author     Volodymyr Shymanskyy
+ * @license    This project is released under the MIT License (MIT)
+ * @copyright  Copyright (c) 2015 Volodymyr Shymanskyy
+ * @date       Oct 2016
+ * @brief
+ *
+ */
+
+#ifndef WidgetGPS_h
+#define WidgetGPS_h
+
+#ifndef BLYNK_NO_FLOAT
+
+#include <Blynk/BlynkWidgetBase.h>
+
+class GpsParam
+{
+public:
+
+    GpsParam(const BlynkParam& param)
+        : mLat (0)
+        , mLon (0)
+        , mAlt (0)
+        , mSpeed (0)
+    {
+        BlynkParam::iterator it = param.begin();
+        if (it >= param.end())
+            return;
+
+        mLat = it.asDouble();
+
+        if (++it >= param.end())
+            return;
+
+        mLon = it.asDouble();
+
+        if (++it >= param.end())
+            return;
+
+        mAlt = it.asDouble();
+
+        if (++it >= param.end())
+            return;
+
+        mSpeed = it.asDouble();
+    }
+
+
+    double getLat() const { return mLat; }
+    double getLon() const { return mLon; }
+    double getAltitude() const { return mAlt; }
+    double getSpeed() const { return mSpeed; }
+
+private:
+    double mLat;
+    double mLon;
+    double mAlt;
+    double mSpeed;
+};
+
+#endif
+
+#endif