Luke Cartwright / Mbed 2 deprecated ELEC2645_Project_el18loc_nearlythere

Dependencies:   mbed

Revision:
7:33cb5f2db1ee
Child:
9:f6ba53e355a0
diff -r 3a4e9ce12911 -r 33cb5f2db1ee Startup/startup.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Startup/startup.h	Tue May 05 14:32:04 2020 +0000
@@ -0,0 +1,32 @@
+#ifndef STARTUP_H
+#define STARTUP_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+#include "LUTs.h"
+
+/** startup class
+ * @author Luke Cartwright, University of Leeds
+ * @brief: manages startup and initialisation
+ * @date May 2020
+*/
+
+
+
+class startup
+{
+public:
+    //methods
+    //constructor
+    startup();
+
+    //destructior
+    ~startup();
+    
+    void initialise(N5110 &lcd, Gamepad &pad);
+
+private:
+};
+
+#endif
\ No newline at end of file