Initial commit

Dependencies:   MODSERIAL Terminal TextLCD mbed

Revision:
0:0903545c0460
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/presence.h	Fri Dec 05 10:26:12 2014 +0000
@@ -0,0 +1,23 @@
+#ifndef __presence_h 
+#define __presence_h 
+
+#include "mbed.h"
+#include "thermal.h"
+#include "Terminal.h"
+
+class Presence 
+{
+public:
+    Presence();
+    Presence(Terminal *term);
+    
+    Thermal *thermal;
+    
+private:
+    I2C *i2c;
+    
+    void poll();
+    
+};
+
+#endif
\ No newline at end of file