Garbage Collectors / Mbed 2 deprecated SLOTrash

Dependencies:   mbed mbedConnectorInterface mbedEndpointNetwork TrashSensors

Fork of TempAndDistTest by Tim Ambrose

Revision:
0:cb422b231ea5
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/GroveTemp.h	Fri May 01 23:21:36 2015 +0000
@@ -0,0 +1,30 @@
+/*
+GroveTemp.h
+IoT GarbageCollectors
+
+Created by Timothy Ambrose on 4/29/15.
+*/
+
+#ifndef GROVE_TEMP_H
+#define GROVE_TEMP_H
+
+#include "mbed.h"
+#define TEMP_BETA 3975
+
+class GroveTempSensor {
+private:
+   float temperature,
+         resistance,
+         minTemp,
+         maxTemp;
+   bool minMaxDefined;
+   
+public:
+   GroveTempSensor();
+   float getTemp();
+   void resetMinMax();
+   float getMin();
+   float getMax();
+};
+
+#endif
\ No newline at end of file