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
Levelengine.cpp
- Committer:
- el17arm
- Date:
- 2019-03-22
- Revision:
- 6:866281ce2b44
- Parent:
- 4:b92da6a09c8b
- Child:
- 7:c6e6ec0e3396
File content as of revision 6:866281ce2b44:
#include <iostream>
#include "Levelengine.h"
Levelengine::Levelengine()
{
}
Levelengine::~Levelengine()
{
}
void Levelengine::test_level(N5110 &lcd)
{
//Border
lcd.drawRect(0,0,1,HEIGHT,FILL_BLACK);
lcd.drawRect(0,0,WIDTH,1,FILL_BLACK);
lcd.drawRect(WIDTH -1,15,1,33,FILL_BLACK);
lcd.drawRect(0,HEIGHT -1,168,1,FILL_BLACK);
//platforms
lcd.drawRect(0,41,34,2,FILL_BLACK);
lcd.drawRect(40,45,30,2,FILL_BLACK);
lcd.drawRect(20,22,15,2,FILL_BLACK);
printf("Level x %i \n", _x_position);
}