2018 revision to classic DataBus AVC code.

Dependencies:   LSM303DLM Servo SerialGraphicLCD L3G4200D IncrementalEncoder SimpleShell

Revision:
37:b8259500dbd3
Child:
42:8d99f64f5898
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Display/Display.h	Wed Jan 02 18:20:47 2019 +0000
@@ -0,0 +1,20 @@
+#ifndef __DISPLAY_H
+#define __DISPLAY_H
+
+#include "mbed.h"
+#include "SystemState.h"
+#include "SerialGraphicLCD.h"
+
+class Display {
+public:
+    Display(PinName tx, PinName rx);
+    void gps(GpsData d);
+    void imu(SensorData d);
+    void status(char *s);
+    
+private:
+    SerialGraphicLCD *lcd;
+    
+};
+
+#endif
\ No newline at end of file