draw numbers on TFT has sometimes ghost-letters on the beginn and/or the end of the line #3459
Replies: 1 comment
-
// https://github.com/Bodmer/TFT_eSPI #include <TFT_eSPI.h> // Hardware Bibliothek von Bodmer mit ILI9341 mit 240 x 320 Pixel TFT_eSPI tft = TFT_eSPI(); void setup() { // backlight for the TFT on my System GPIO15, your System maybe use an differen GPIO tft.init(); void loop() { tft.setTextColor(TFT_WHITE, TFT_BLACK, 0); //TFT Text Color WHITE on BLACK tft.drawString(buf, 60, 5, 1); |
Beta Was this translation helpful? Give feedback.
-
Look for the picture over the red marks.
I have testet different types of draw, all have the same problem,
i would like use the three drawRightString, drawCenterString and drawString.
But i got this ghost-letters on the beginn and/or the end of the line.
This .ino is running on a ESP32 with ILI9341 320x240, TFT_eSPI is the newest 2.5.43
The Arduino IDE is the new 2.3.2
Do i make there a mistake or can that be a bug in the TFT_eSPI.
In the next post is the Software with ther you can see my problem live.
Thank you for your help.
Beta Was this translation helpful? Give feedback.
All reactions