Hello--
I'm working to integrate the 3.2" TFT Color touchscreen I purchased here into my project, and after installing (photo below), and creating/uploading a test sketch, I have only a white screen. I have reconnected the pins. Here is the Test sketch. Have I left anything out? As before, any insight you may have is greatly appreciated.
And here is the current config:
I'm working to integrate the 3.2" TFT Color touchscreen I purchased here into my project, and after installing (photo below), and creating/uploading a test sketch, I have only a white screen. I have reconnected the pins. Here is the Test sketch. Have I left anything out? As before, any insight you may have is greatly appreciated.
#include <Adafruit_ILI9341.h>
#include <SPI.h>
#define TFT_CS 10
#define TFT_RST 3
#define TFT_DC 9
Adafruit_ILI9341 tft = Adafruit_ILI9341(TFT_CS, TFT_DC, TFT_RST);
void setup() {
pinMode(TFT_RST, OUTPUT);
digitalWrite(TFT_RST, LOW); // Reset the display
delay(100); // Wait 100 ms
digitalWrite(TFT_RST, HIGH); // End the reset state
Serial.begin(9600);
tft.begin();
tft.fillScreen(ILI9341_BLACK);
tft.setTextColor(ILI9341_WHITE);
tft.setTextSize(1);
tft.setCursor(0, 0);
tft.println("Hello, world!");
}
And here is the current config: