Skip to content

Commit

Permalink
Updated Splash Screen.
Browse files Browse the repository at this point in the history
  • Loading branch information
tgolla committed Sep 14, 2021
1 parent fc1d034 commit 8e00b4e
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions SphereBot.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8e00b4e

Please sign in to comment.