Skip to content

Commit 3003d33

Browse files
committed
POC that the library only fails when you try to scroll something that is smaller than the display
1 parent 61bafef commit 3003d33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

thermo14/thermo14.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ void setup() {
3232
getDateTimeString(compiled);
3333
Serial.println(dateTimeString);
3434

35-
display.showText("Hello thermo14");
35+
display.showTextScroll("Hello thermo14 very long should be ok");
3636
delay(2000);
3737

3838
Serial.println("hello serial thermo14");
@@ -92,7 +92,7 @@ void loop() {
9292
delay(2000);
9393
return;
9494
}
95-
display.showText("Temperature:");
95+
display.showTextScroll("Temperature in fahrenheit:");
9696
delay(2000);
9797
Serial.println(c);
9898
double f = (c * 9.0 / 5.0) + 32.0;

0 commit comments

Comments
 (0)