#include <SPI.h>
#include <Adafruit_ILI9341.h> // to talk with the LCD
#include <Adafruit_GFX.h> // for better graphic display
#include <SD.h>
byte cs_pin = 8; // chip select pin
byte d_pin = 9; // command pin / data pin
File file;
byte width = 320;
byte height = 240;
Adafruit_ILI9341 tft = Adafruit_ILI9341(cs_pin , d_pin); // tft object
void setup(){
Serial.begin(9600);
tft.begin(); // initializing tft display
tft.setCursor(0,0);
// tft.setTextWrap(false); // wraps the text to next line
// tft.setRotation(1); // changes the rotation of the display
tft.setTextColor(ILI9341_RED);
tft.setTextSize(3);
if (!SD.begin())Serial.println("SD card not detected");
file = SD.open("wokwi.txt");
if (file){
while (file.available()){
char data = file.read();
tft.print(data);
}
}
file.close();
}
void loop(){
}