Early commits of my project

Dependencies:   mbed Gamepad N5110

Revision:
0:9e5f9e1c8ef9
Child:
1:c80162894831
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.h	Mon Mar 11 18:28:46 2019 +0000
@@ -0,0 +1,20 @@
+
+#ifndef MAIN_H
+#define MAIN_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Joystick.h"
+
+//objects defined in main file, removes need to define multiple times
+
+extern N5110 lcd;
+extern Joystick joystick;
+extern AnalogIn contrast;
+extern DigitalIn joy_button;
+
+//function prototypes
+
+void init();
+
+#endif
\ No newline at end of file