Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: Instuctions/Instruction.h
- 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