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:
- 7:8d381315f72c
- Parent:
- 6:a2c72def99f9
--- a/Menu/Menu.h Tue May 26 18:14:03 2020 +0000 +++ b/Menu/Menu.h Tue May 26 22:53:42 2020 +0000 @@ -15,17 +15,33 @@ { private: - + //classes N5110 _lcd; Gamepad _pad; public: - + //functions + + /**Constructor + *@param N5110 object + *@param Gamepad object + */ Menu(N5110 &lcd,Gamepad &pad); + /**Make initial screen + */ void initscreen(); + + /**Make the menu screen + */ void menu_screen(); + + /**Make the arrow in the menu + */ void arrow(); + + /**Make the help function + */ void help(); };