From 73f73cd23221466873db1dea91235fb781070c0a Mon Sep 17 00:00:00 2001 From: "Jason A. Cox" Date: Mon, 29 Jun 2020 21:58:03 -0700 Subject: [PATCH] Numbers and Strings using positions --- examples/TM1637Test/TM1637Test.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/TM1637Test/TM1637Test.ino b/examples/TM1637Test/TM1637Test.ino index ed1abb1..fc00e56 100644 --- a/examples/TM1637Test/TM1637Test.ino +++ b/examples/TM1637Test/TM1637Test.ino @@ -222,7 +222,7 @@ void loop() // Numbers and Strings using positions display.clear(); char degree[] = "\xB0"; - display.showString(degree, 200, 1, 3); + display.showString(degree, 1, 3); for (int x = -90; x < 200; x++) { display.showNumber(x, false, 3, 0); delay(10);