ELEC2645 (2018/19) / Mbed 2 deprecated ll16o2l_ELEC2645

Dependencies:   mbed Gamepad

Revision:
9:99287b26be1e
Child:
11:1c5c549ba75e
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Instuctions/Instruction.h	Tue Apr 30 09:27:09 2019 +0000
@@ -0,0 +1,25 @@
+#ifndef INSTRUCTION_H
+#define INSTRUCTION_H
+
+#include "mbed.h"
+#include "N5110.h"
+#include "Gamepad.h"
+
+
+class Instruction
+{
+public:
+    Instruction();
+    ~Instruction();
+    
+private:
+    void control(Gamepad &pad);
+    void write(N5110 &lcd, Gamepad &pad);
+    
+    int move_up;
+    int move_down;
+    int y;
+
+}
+
+#endif
\ No newline at end of file