3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
83:0d3572a8a851
Parent:
82:668b51a39148
Child:
85:422d0a1b95cf
--- a/Measure/Measure.cpp	Thu May 11 15:53:15 2017 +0000
+++ b/Measure/Measure.cpp	Thu May 11 19:23:55 2017 +0000
@@ -1,23 +1,26 @@
 #include "Measure.h"
 
-    //Constructor taking 3 parameters
-    Measure::Measure(float f, float h, float p) {
-        temperature = f;
-        humidity = h;
-        pressure = p;    
-    }
-    // Empty / default constructor
-    Measure::Measure()
-    {
-        temperature = 0;
-        humidity = 0;
-        pressure = 0;    
-    }
-    // Constructor taking 4 paramters, in cluding a LocalDate
-    Measure::Measure(LocalDate d,float f, float h, float p)
-    {
-        date = d;
-        temperature = f;
-        humidity = h;
-        pressure = p;   
-    }
+//
+// Measure objects holding data collected from sensor board.
+//
+
+Measure::Measure(float f, float h, float p) {
+    temperature = f;
+    humidity = h;
+    pressure = p;    
+}
+
+Measure::Measure()
+{
+    temperature = 0;
+    humidity = 0;
+    pressure = 0;    
+}
+
+Measure::Measure(LocalDate d,float f, float h, float p)
+{
+    date = d;
+    temperature = f;
+    humidity = h;
+    pressure = p;   
+}