From fbdc65a3c78e29afa5e26c6d473013d68b72742c Mon Sep 17 00:00:00 2001 From: Bodmer Date: Wed, 25 Oct 2017 02:08:52 +0100 Subject: [PATCH] Whoops, another typo - who put S and W keys next to each other ;-) --- examples/Generic/Touch_calibrate/Touch_calibrate.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/Generic/Touch_calibrate/Touch_calibrate.ino b/examples/Generic/Touch_calibrate/Touch_calibrate.ino index ff13392..4f10110 100644 --- a/examples/Generic/Touch_calibrate/Touch_calibrate.ino +++ b/examples/Generic/Touch_calibrate/Touch_calibrate.ino @@ -45,7 +45,7 @@ void loop(void) { // Pressed will be set true is there is a valid touch on the screen boolean pressed = tft.getTouch(&x, &y); - // Draw a shite spot at the detected coordinates + // Draw a white spot at the detected coordinates if (pressed) { tft.fillCircle(x, y, 2, TFT_WHITE); //Serial.print("x,y = ");