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.
Dependencies: mbed
Diff: Menu/Menu.h
- Revision:
- 2:7fa08670b1fc
- Child:
- 6:a2c72def99f9
diff -r a084ee340d74 -r 7fa08670b1fc Menu/Menu.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Menu/Menu.h Tue May 26 16:26:12 2020 +0000 @@ -0,0 +1,26 @@ +#ifndef MENU_H +#define MENU_H + +#include "mbed.h" +#include "Gamepad.h" +#include "N5110.h" + +class Menu +{ + +private: + + N5110 _lcd; + Gamepad _pad; + +public: + + Menu(N5110 &lcd,Gamepad &pad); + + void initscreen(); + void menu_screen(); + void arrow(); + void help(); +}; + +#endif \ No newline at end of file