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:
- 9:241a1a7d8527
- Child:
- 10:c33d7593a275
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Menu/Menu.h Tue Apr 09 05:14:07 2019 +0000 @@ -0,0 +1,24 @@ +#ifndef MENU_H +#define MENU_H + +#include "mbed.h" +#include "N5110.h" +#include "Gamepad.h" + +class Menu +{ + public: + Menu(); + ~Menu(); + + // Displays title screen + void init(int ycursor); + void title(N5110 &lcd, Direction d); + int get_cursor(); + //void Menu::scroll(N5110 &lcd, Direction d); + + private: + int _ycursor; + +}; +#endif \ No newline at end of file