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
ModeB/ModeB.h
- Committer:
- el17mtu
- Date:
- 2019-05-08
- Revision:
- 0:15b74f0f8c7f
- Child:
- 18:59befe1eaa56
File content as of revision 0:15b74f0f8c7f:
#ifndef MODEB_H #define MODEB_H #include "mbed.h" #include "main.h" #include "N5110.h" #include "Gamepad.h" // function prototypes void mode_B(); class ModeB { public: ModeB(); ~ModeB(); void draw(N5110 &lcd); void screen(N5110 &lcd); }; #endif