ECE 4180 Final

Dependencies:   mbed wave_player mbed-rtos C12832_lcd 4DGL-uLCD-SE LCD_fonts SDFileSystem

Committer:
yqin70
Date:
Sun Dec 08 02:18:30 2019 +0000
Revision:
21:cbcbb3480cad
Parent:
20:7d56cdcbc9a5
somewhat done(pushbutton added, has an issue where if you spam the touchpad, it'll increase your score even if there is no bubble).

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jcrane32 19:d65f9fb1023b 1 #ifndef globals_h
jcrane32 19:d65f9fb1023b 2 #define globals_h
jcrane32 19:d65f9fb1023b 3
jcrane32 19:d65f9fb1023b 4 #include "mbed.h"
jcrane32 19:d65f9fb1023b 5 #include "rtos.h"
jcrane32 19:d65f9fb1023b 6
jcrane32 19:d65f9fb1023b 7 #ifndef ULCD_4DGL_H_
jcrane32 19:d65f9fb1023b 8 #define ULCD_4DGL_H_
jcrane32 19:d65f9fb1023b 9 #include "uLCD_4DGL.h"
jcrane32 19:d65f9fb1023b 10 #endif
jcrane32 19:d65f9fb1023b 11
jcrane32 19:d65f9fb1023b 12 extern uLCD_4DGL uLCD;
jcrane32 19:d65f9fb1023b 13 extern Mutex lcd_mutex;
jcrane32 19:d65f9fb1023b 14
yqin70 21:cbcbb3480cad 15 extern volatile float bubblesDrawn;
yqin70 21:cbcbb3480cad 16 extern volatile float bubblesMissed;
yqin70 21:cbcbb3480cad 17 extern volatile float bubblesHit;
jcrane32 19:d65f9fb1023b 18
jcrane32 19:d65f9fb1023b 19 #endif //globals_h