From 3319440cdb6027b34b6bb9ef52fe005ee2e38922 Mon Sep 17 00:00:00 2001 From: ljan Date: Tue, 12 Jul 2016 11:21:21 +0200 Subject: [PATCH] Turn text wrap off Set TextWrap to false to get compatibility with different versions of the display tft.setTextWrap(false); --- arduino/SolderStation.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arduino/SolderStation.ino b/arduino/SolderStation.ino index 96cbf5b..89325f7 100644 --- a/arduino/SolderStation.ino +++ b/arduino/SolderStation.ino @@ -78,7 +78,7 @@ void setup(void) { tft.setRotation(0); // 0 - Portrait, 1 - Lanscape tft.fillScreen(QDTech_BLACK); - tft.setTextWrap(true); + tft.setTextWrap(false); @@ -383,4 +383,4 @@ void setPwmFrequency(int pin, int divisor) { } TCCR2B = TCCR2B & 0b11111000 | mode; } -} \ No newline at end of file +}