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
Diff: SpaceInvadersEngine/SpaceInvadersEngine.cpp
- Revision:
- 71:1f6b665fc047
- Parent:
- 70:7f0b330ff40b
- Child:
- 72:938d2d65199d
--- a/SpaceInvadersEngine/SpaceInvadersEngine.cpp Sat Apr 27 19:39:26 2019 +0000
+++ b/SpaceInvadersEngine/SpaceInvadersEngine.cpp Sat Apr 27 19:54:20 2019 +0000
@@ -107,6 +107,16 @@
pad.leds_off();
}
+ void SpaceInvadersEngin::print_scores(N5110 &lcd) {
+ // get scores from the spaceship
+ int space_ship_score = _space_ship.get_score();
+ // print to LCD i
+ char buffer1[14];
+ sprintf(buffer1,"%2d",space_ship_score);
+ lcd.printString(buffer1,WIDTH/2 - 20,1); // font is 8 wide, so leave 4 pixel gape from middle assuming two digits
+ }
+
+