Minor fixes

Dependencies:   LPS25H hts221

Fork of Coursework by Group PAG

Revision:
37:1a621144e73f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Reading.cpp	Wed May 03 10:30:24 2017 +0000
@@ -0,0 +1,14 @@
+#include "Reading.h"
+
+Reading::Reading(Clock c, float t, float p, float h){
+    clock = c;
+    temp = t;
+    pressure = p;
+    humidity = h;
+    }
+Reading::Reading(){ 
+    //clock = ???? //can't get this to work :(
+    temp = 25.50;
+    pressure = 1000;
+    humidity = 55;
+    }
\ No newline at end of file