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 = ");