3rd Repo, trying to figure this out.

Dependencies:   LPS25H hts221

Fork of SOFT253_Template_Weather_OS_54 by Stage-1 Students SoCEM

Revision:
80:959151952153
Parent:
79:4e6b53eb678b
Child:
81:996c0a3319b4
--- a/CircularArray/CircularArray.cpp	Fri Apr 28 17:17:24 2017 +0000
+++ b/CircularArray/CircularArray.cpp	Wed May 10 10:02:22 2017 +0000
@@ -22,6 +22,12 @@
     array[next] = _measure;
     currentSize++;
 }
+
+Measure CircularArray::pullValue()
+{
+    return array[firstValue];
+}
+
 void CircularArray::readX(int x)
 {
     if(x > currentSize)