Arduino ILI9341 2.8 screen text is vertical How can I make it horizontal Thanks for your help
#include <Adafruit_ILI9341.h> // include Adafruit ILI9341 TFT library
#define TFT_CS 8 // TFT CS pin is connected to arduino pin 8
#define TFT_RST 9 // TFT RST pin is connected to arduino pin 9
#define TFT_DC 10 // TFT DC pin is connected to arduino pin 10
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_RST);
void setup(void) {
tft.begin(); // initialize LCD
tft.fillScreen(ILI9341_BLACK);
tft.setTextSize(2);
tft.println("MERABA AMCACIM");
}
void loop(void) {
}