rotate tft.print

hello,
I have a 1.8" tft screen with SDReader which had been mounted upside down and i cannot rotate, so i need some way to rotate the text.
i'am a newbe. Is there a way to print a text (using Adafruit_ST7735.h library) which is 180 degrees rotated (upside down)?

thank you in advance
Vin

Have you tried using setRotation(x);

Where x is 0, 1, 2 or 3 depending on the rotation you want?

thank you! it works.
tft.setRotation(1) --> 90degrees
tft.setRotation(2) --> 180degrees
tft.setRotation(3) --> 270degrees