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
Menus/Menu.h
- Committer:
- jiaxinZHOU
- Date:
- 2019-05-08
- Revision:
- 0:07c4fef6c0af
- Child:
- 1:538386e72e40
File content as of revision 0:07c4fef6c0af:
#ifndef MENU_H #define MENU_H #include "mbed.h" #include "N5110.h" #include "Gamepad.h" class Menu { public: Menu(); ~Menu(); int input(int select,Gamepad &pad); void menus(N5110 &lcd,Gamepad &pad); int difficulty(N5110 &lcd,Gamepad &pad); private: int sel; int go_on; int _fps; }; #endif