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.
Map/Map.cpp
- Committer:
- evanso
- Date:
- 2020-04-16
- Revision:
- 6:12e8433382b3
- Child:
- 7:0af4ced868f5
File content as of revision 6:12e8433382b3:
#include "Map.h"
Map::Map() {
}
Map::~Map() {
}
void Map::init() {
position_x_map_ = 0;
position_y_map_ = 48;
}
void Map::draw_triangle(N5110 &lcd){
lcd.drawLine(0,48,5,43,1);
lcd.drawLine(5,43,10,48,1);
}