LCD implementation of our project.

Dependencies:   mbed mbed-rtos MLX90614

Revision:
8:81ed1135ba02
Parent:
7:11675c1dce4f
--- a/Compass.h	Wed Jun 03 12:22:46 2015 +0000
+++ b/Compass.h	Wed Jun 03 16:37:21 2015 +0000
@@ -22,12 +22,13 @@
         virtual void update(char c);
         
         //constructor
-        Compass(ST7565 *lcd, Item *back);
+        Compass(ST7565 *lcd, Item *back, DigitalOut *gyro, DigitalOut *thermo);
         
     private:
         Thread *ct; //compass update thread
         
         //helper functions
+        DigitalOut *gyro, *thermo;
         void draw_compass(double degrees);
         static void ct_start(void const *args);
         void compass_update(void);