Completing merge

This commit is contained in:
Daniel Eichhorn
2017-07-09 18:36:19 +02:00
parent 1e34ac63ee
commit f11de7a69e
4 changed files with 5 additions and 9 deletions

View File

@@ -29,7 +29,7 @@ bool TouchController::loadCalibration() {
}
f.close();
}
bool TouchController::saveCalibration() {
@@ -68,7 +68,7 @@ void TouchController::continueCalibration() {
} else if (state == 1) {
(*calibrationCallback)(230, 310);
if (touchScreen->touched() && (millis() - lastStateChange > 1000)) {
p2 = p;
state++;
lastStateChange = millis();
@@ -103,4 +103,3 @@ TS_Point TouchController::getPoint() {
p.y = y;
return p;
}