-
Notifications
You must be signed in to change notification settings - Fork 207
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Black screen on S3 T display #293
Comments
You ignored the precautions mentioned in the README https://github.com/Xinyuan-LilyGO/T-Display-S3?tab=readme-ov-file#9%EF%B8%8F%E2%83%A3-faq |
By the way, T-Display-S3-main should not be placed in the library directory, just copy the folder in lib to the library directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Good morning,
I have a S3 T display from lilygo; The screen was ok with some animation on it when I plugged it the 1st time.
Then, I have follow the instruction of the github by placing the folder in the librairies and also at the same levent the TFT folder. I have paid attention to not use recent esp32 board manager and adjusted all the different suggested configurations
I then try to use examples from the ide arduino or simple basic program to have something on the screen but nothing is appearing. :(
I tried a simple program to switch on a led with the board to ensure that there was a good communication, it was fine.
How to move on ?
Thank you
example of basic programm for the display:
#include <TFT_eSPI.h> // Include the graphics library (needs to be installed)
TFT_eSPI tft = TFT_eSPI(); // Create an instance of the display
void setup() {
tft.init(); // Initialize the display
tft.setRotation(1); // Set the orientation of the display
}
void loop() {
tft.fillScreen(TFT_BLACK); // Clear the screen to black
tft.setTextColor(TFT_WHITE, TFT_BLACK); // Set the font color
tft.drawString("Hello, T-Display-S3!", 10, 10, 2); // Draw a string on the display
delay(2000);
}// Wait for 2 seconds
The text was updated successfully, but these errors were encountered: