aggress
aggress
About
- Username
- aggress
- Joined
- Visits
- 65
- Last Active
- Roles
- Member
Comments
-
Thanks, but where can I get version 1.2.23? I can't see it in the Arduino IDE, and it's not listed at github.com/lovyan03/LovyanGFX/releases.
-
drawLine() uses the same drawing function (writeFillRectPreclipped()) as fillRect(), and vertical lines are simply not drawn.
-
Or even change nothing at all. Look at how the font is rendered. At its native size, the lines should be one pixel wide, but since you've set the size to 3, the lines should be 3 pixels wide. However, the font's vertical lines are 2 pixels wide. for…
-
Okay, let's take your code CrowPanel_ESP32_Tutorial\Code\V2.X\Lesson 2 Draw GUI with LovyanGFX\4.3inch_5inch_7inch\Draw\Draw.ino, change tft.setTextSize(3); to tft.setTextSize(1); and the vertical stripes in the text are not drawn. forum.elecrow.com…