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.
MenuClasses/Tutorial/Tutorial.h
- Committer:
- AhmedPlaymaker
- Date:
- 2019-04-29
- Revision:
- 60:d3a9e0e4a0de
- Child:
- 78:10e5cc013806
File content as of revision 60:d3a9e0e4a0de:
#ifndef TUTORIAL_H
#define TUTORIAL_H
#include "mbed.h"
#include "N5110.h"
#include "Gamepad.h"
class Tutorial
{
public:
Tutorial();
~Tutorial();
/** Implement Tutorial
*
* This function is used to configure Tutorial.
*/
void Implement(N5110 &lcd, Gamepad &pad);
/** game Pad
*
* This function introduces the gamepad to the user.
*/
void gamePad(N5110 &lcd, Gamepad &pad);
};
#endif