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
StartMenu/StartMenu.h
- Committer:
- ll17lrc
- Date:
- 2020-05-21
- Revision:
- 10:df6a496270be
- Parent:
- 4:a9d5fca3b7ba
- Child:
- 11:7a4abe731f9c
File content as of revision 10:df6a496270be:
#ifndef STARTMENU_H
#define STARTMENU_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
#include "ImpossEngine.h"
/** Ball Class
@author Dr Craig A. Evans, University of Leeds
@brief Controls the ball in the Pong game
@date Febraury 2017
*/
class StartMenu
{
public:
StartMenu();
~StartMenu();
void complete(Gamepad &pad,N5110 &lcd);
/// accessors and mutators
private:
void level(Gamepad &pad,N5110 &lcd);
int selector;
int arrow;
};
#endif