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.
Instuctions/Instruction.h
- Committer:
- ll16o2l
- Date:
- 2019-04-30
- Revision:
- 9:99287b26be1e
- Child:
- 11:1c5c549ba75e
File content as of revision 9:99287b26be1e:
#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