From 8e00b4e67344797afd77ff33dea88615c3f1f9ad Mon Sep 17 00:00:00 2001 From: Terence Golla Date: Mon, 13 Sep 2021 21:49:05 -0500 Subject: [PATCH] Updated Splash Screen. --- SphereBot.ino | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/SphereBot.ino b/SphereBot.ino index f85cd0d..e843b56 100644 --- a/SphereBot.ino +++ b/SphereBot.ino @@ -281,13 +281,16 @@ void setup() // Display Splash Screen ImageReturnCode stat = reader.drawBMP("/splash.bmp", tft, 0, 0); - tft.setCursor(10, 20); + tft.setCursor(10, 10); tft.setTextColor(ILI9341_WHITE); tft.setTextSize(5); - tft.print("SphereBot "); - tft.setCursor(10, 20 + (8 * 5)); + tft.print("SphereBot"); + tft.setCursor(10, 10 + (8 * 5) + 2); + tft.setTextSize(2); + tft.print("An EggBot Clone"); + tft.setCursor(10, 10 + (8 * 5)+ 2 + (8 * 2) + 4); tft.setTextSize(1); - tft.print("v2.0"); + tft.print("v1.1"); delay(SPLASH_SCREEN_DELAY); tft.fillScreen(ILI9341_BLACK);