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
Menu/Menu.h
- Committer:
- ale_carb0ni
- Date:
- 2020-05-26
- Revision:
- 6:a2c72def99f9
- Parent:
- 2:7fa08670b1fc
- Child:
- 7:8d381315f72c
File content as of revision 6:a2c72def99f9:
#ifndef MENU_H #define MENU_H #include "mbed.h" #include "Gamepad.h" #include "N5110.h" /** Menu Class * @brief controls the home page, the menu and the help function * @author Alessandro Carboni * @date Apr, 2020 */ class Menu { private: N5110 _lcd; Gamepad _pad; public: Menu(N5110 &lcd,Gamepad &pad); void initscreen(); void menu_screen(); void arrow(); void help(); }; #endif