Skip to content

Commit

Permalink
Numbers and Strings using positions
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Jun 30, 2020
1 parent 4e0fc14 commit 73f73cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/TM1637Test/TM1637Test.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 73f73cd

Please sign in to comment.