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: Wall/Wall.cpp
- Revision:
- 10:bb273261d33d
- Parent:
- 9:192ad897ec95
- Child:
- 11:ba1906f151fd
--- a/Wall/Wall.cpp Sun Apr 28 21:32:06 2019 +0000
+++ b/Wall/Wall.cpp Mon Apr 29 08:52:36 2019 +0000
@@ -27,13 +27,15 @@
void Wall::draw(N5110 &lcd)
{
- lcd.drawRect(_x,_y,1,_y+10,FILL_BLACK);
+ lcd.drawRect(_x-50, _y, 5, _y+15,FILL_BLACK);
+
+ lcd.drawRect(_x-20, _y+15, 5, _y+15,FILL_BLACK);
+
+ lcd.drawRect(_x+10, _y+35, 5,_y+15,FILL_BLACK);
+
+ lcd.drawRect(_x-60, _y+40, 5, _y+15,FILL_BLACK);
+
- /*lcd.drawRect(_x,_y,_x+5,_y+10,FILL_BLACK);
-
- lcd.drawRect(_x+10,_y+33,_x+15,_y+40,FILL_BLACK);*/
-
-
}