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
CopterEngine/CopterEngine.h@8:ccf827ce0072, 2019-04-22 (annotated)
- Committer:
- ml16c5l
- Date:
- Mon Apr 22 03:37:34 2019 +0000
- Revision:
- 8:ccf827ce0072
- Child:
- 9:192ad897ec95
start of copter engine
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
ml16c5l | 8:ccf827ce0072 | 1 | #ifndef COPTERENGINE_H |
ml16c5l | 8:ccf827ce0072 | 2 | #define COPTERENGINE_H |
ml16c5l | 8:ccf827ce0072 | 3 | |
ml16c5l | 8:ccf827ce0072 | 4 | #include "mbed.h" |
ml16c5l | 8:ccf827ce0072 | 5 | #include "N5110.h" |
ml16c5l | 8:ccf827ce0072 | 6 | #include "Gamepad.h" |
ml16c5l | 8:ccf827ce0072 | 7 | #include "Copter.h" |
ml16c5l | 8:ccf827ce0072 | 8 | #include "Walls.h" |
ml16c5l | 8:ccf827ce0072 | 9 | |
ml16c5l | 8:ccf827ce0072 | 10 | |
ml16c5l | 8:ccf827ce0072 | 11 | |
ml16c5l | 8:ccf827ce0072 | 12 | |
ml16c5l | 8:ccf827ce0072 | 13 | class CopterEngine |
ml16c5l | 8:ccf827ce0072 | 14 | { |
ml16c5l | 8:ccf827ce0072 | 15 | |
ml16c5l | 8:ccf827ce0072 | 16 | public: |
ml16c5l | 8:ccf827ce0072 | 17 | /** Constructor */ |
ml16c5l | 8:ccf827ce0072 | 18 | CopterEngine(); |
ml16c5l | 8:ccf827ce0072 | 19 | |
ml16c5l | 8:ccf827ce0072 | 20 | /** Destructor */ |
ml16c5l | 8:ccf827ce0072 | 21 | ~CopterEngine(); |