3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
40:ba083993b481
Child:
46:0de1f3c7d118
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Measure.cpp	Wed Apr 05 14:48:21 2017 +0000
@@ -0,0 +1,14 @@
+#include "Measure.h"
+
+    //Constructor
+    Measure::Measure(float f, float h, float p) {
+        temperature = f;
+        humidity = h;
+        pressure = p;    
+    }
+    Measure::Measure()
+    {
+        temperature = 0;
+        humidity = 0;
+        pressure = 0;    
+    }