Update all Menus to new Print function
This commit is contained in:
@@ -16,15 +16,10 @@ void MenuCaptureRoute::printMenu() {
|
||||
|
||||
this->routeInfo = this->captureRoute->getRouteInfo();
|
||||
|
||||
if (this->lcd) {
|
||||
this->lcd->clear();
|
||||
this->lcd->setCursor(0, 0);
|
||||
this->lcd->printf("Points: %u", this->routeInfo.totalPoints);
|
||||
this->lcd->setCursor(0, 1);
|
||||
this->lcd->print("du fahren. :-)");
|
||||
String lineOne = "Points: ";
|
||||
String lineTwo = "You can drive.";
|
||||
|
||||
}
|
||||
std::cout << "Points: " << this->routeInfo.totalPoints << " du fahren. :-)" << std::endl;
|
||||
lineTwo.concat(this->routeInfo.totalPoints);
|
||||
}
|
||||
|
||||
void MenuCaptureRoute::update() {
|
||||
|
||||
Reference in New Issue
Block a user