Skip to content

Commit

Permalink
fine tune
Browse files Browse the repository at this point in the history
  • Loading branch information
moononournation committed May 2, 2022
1 parent b99cc10 commit 2485f43
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,10 @@ void setup(void)

void loop()
{
gfx->setCursor(random(gfx->width() / 2), random(gfx->height() - 16));
gfx->setCursor(random(gfx->width() / 4), random(gfx->height() - 32) + 16);
gfx->setTextColor(random(0xffff), random(0xffff));
gfx->setTextSize(random(2) + 2 /* x scale */, random(2) + 2 /* y scale */);
gfx->println(helloWorldStrings[random(74)]);

delay(1000); // 1 second
delay(500); // 0.5 second
}

0 comments on commit 2485f43

Please sign in to comment.