Hello, im using 2,4 tft lcd with arduino uno and adafruit gfx library. I want my text to be horizontal, not vertical. Is there command for that?
Try set orientation.. described in the adafruit manual
.
Use setRotation to change the screen orientation:
tft.setRotation(rotation);
Where rotation is 0, or 2 for portrait and 1 or 3 for landscape rotations.