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: LCD_ST7735 MusicEngine RETRO_BallsAndThings mbed
Main.cpp@0:7e989d0083ff, 2015-02-06 (annotated)
- Committer:
- maxint
- Date:
- Fri Feb 06 10:18:41 2015 +0000
- Revision:
- 0:7e989d0083ff
First game ready for competition
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
maxint | 0:7e989d0083ff | 1 | #include "mbed.h" |
maxint | 0:7e989d0083ff | 2 | |
maxint | 0:7e989d0083ff | 3 | #include "Game.h" |
maxint | 0:7e989d0083ff | 4 | |
maxint | 0:7e989d0083ff | 5 | int main() { |
maxint | 0:7e989d0083ff | 6 | Game game; |
maxint | 0:7e989d0083ff | 7 | |
maxint | 0:7e989d0083ff | 8 | game.showSplashScreen(); |
maxint | 0:7e989d0083ff | 9 | |
maxint | 0:7e989d0083ff | 10 | while (true) |
maxint | 0:7e989d0083ff | 11 | game.tick(); |
maxint | 0:7e989d0083ff | 12 | } |