Final project repo for ECE 495

Dependencies:   Adafruit_GFX_MBED Adafruit_ILI9341 BurstSPI DS1820 mbed mbed-rtos ltc2991_lib

Revision:
0:7ba4e0775670
Child:
5:c1c710391df2
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/display/screens/current/CurrentScreen.h	Tue Nov 29 16:56:43 2016 +0000
@@ -0,0 +1,19 @@
+#ifndef CURRENTSCREEN_H
+#define CURRENTSCREEN_H
+
+#include "Screen.h"
+#include "mbed.h"
+#include "Adafruit_ILI9341.h"
+
+class CurrentScreen : public Screen {
+
+public:
+    CurrentScreen(int id, Adafruit_ILI9341 *tft);
+    
+    virtual void init();
+    virtual void update();
+    
+    
+};
+
+#endif
\ No newline at end of file