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
Five/Five.h@11:7a4abe731f9c, 2020-05-25 (annotated)
- Committer:
- ll17lrc
- Date:
- Mon May 25 16:40:59 2020 +0000
- Revision:
- 11:7a4abe731f9c
- Child:
- 13:fd290d2fd917
Removed level select.; Added level 6
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ll17lrc | 11:7a4abe731f9c | 1 | #ifndef FIVE_H |
ll17lrc | 11:7a4abe731f9c | 2 | #define FIVE_H |
ll17lrc | 11:7a4abe731f9c | 3 | |
ll17lrc | 11:7a4abe731f9c | 4 | #include "mbed.h" |
ll17lrc | 11:7a4abe731f9c | 5 | #include "N5110.h" |
ll17lrc | 11:7a4abe731f9c | 6 | #include "Gamepad.h" |
ll17lrc | 11:7a4abe731f9c | 7 | |
ll17lrc | 11:7a4abe731f9c | 8 | |
ll17lrc | 11:7a4abe731f9c | 9 | /** Ball Class |
ll17lrc | 11:7a4abe731f9c | 10 | @author Dr Craig A. Evans, University of Leeds |
ll17lrc | 11:7a4abe731f9c | 11 | @brief Controls the ball in the Pong game |
ll17lrc | 11:7a4abe731f9c | 12 | @date Febraury 2017 |
ll17lrc | 11:7a4abe731f9c | 13 | */ |
ll17lrc | 11:7a4abe731f9c | 14 | class Five |
ll17lrc | 11:7a4abe731f9c | 15 | { |
ll17lrc | 11:7a4abe731f9c | 16 | |
ll17lrc | 11:7a4abe731f9c | 17 | public: |
ll17lrc | 11:7a4abe731f9c | 18 | Five(); |
ll17lrc | 11:7a4abe731f9c | 19 | ~Five(); |
ll17lrc | 11:7a4abe731f9c | 20 | void draw(N5110 &lcd); |
ll17lrc | 11:7a4abe731f9c | 21 | /// accessors and mutators |
ll17lrc | 11:7a4abe731f9c | 22 | |
ll17lrc | 11:7a4abe731f9c | 23 | private: |
ll17lrc | 11:7a4abe731f9c | 24 | |
ll17lrc | 11:7a4abe731f9c | 25 | |
ll17lrc | 11:7a4abe731f9c | 26 | }; |
ll17lrc | 11:7a4abe731f9c | 27 | #endif |