Skip to content

Commit 5a33590

Browse files
author
dave
committed
moved example into the forked lib
1 parent 7278496 commit 5a33590

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

examples/mbedAdaExample/main.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ int main()
5252
taskManager.scheduleFixedRate(75, [] {
5353
gfx.setFont(nullptr);
5454
gfx.setCursor(0, 0);
55-
gfx.print("hello world");
55+
gfx.setTextSize(2);
56+
gfx.print("mbed demo");
5657
gfx.fillRect(10, 25, 50, 10, BLACK);
58+
gfx.setTextSize(1);
5759
gfx.setCursor(10, 25);
5860
gfx.print((double) millis() / 1000.0);
5961
gfx.drawXBitmap(40, 40, iconWifiThreeBar, 16, 12, WHITE);

0 commit comments

Comments
 (0)