-
Notifications
You must be signed in to change notification settings - Fork 13
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
unrecognisable issue #19
Comments
can you guys please help |
and if you can provide skype or discord to chat live |
Delete all libraries and re-copy the copy provided by this repository. Do not upgrade the library version. |
ok |
In file included from c:\Users\v.sujay\Documents\Arduino\libraries\TFT_eSPI\TFT_eSPI.h:97, exit status 1 Compilation error: exit status 1 |
this gave this error |
what should i do |
Arduino ESP core must use 2.0.14 |
Sketch uses 322865 bytes (10%) of program storage space. Maximum is 3145728 bytes. A serial exception error occurred: Write timeout |
again error |
i uploaded the adjust backlight code and the display shows nothing WhatsApp.Video.2024-12-26.at.19.58.39_475948d3.mp4 |
and if i upload another code it says Compilation error: Invalid FQBN: getting build properties for board esp32:esp32:esp32s3: invalid option 'ZigbeeMode' |
What system do you use? If it is Windows, then go to this path, delete the esp32 folder, and then reinstall it C:\Users\YourNmae\AppData\Local\Arduino15\packages |
thank you so much man really got tensed actually working on project |
I'll reply when I see it. |
Hi ,
I’m new to the ESP32 world, and I recently got a LilyGo T-Display S3 Pro board to create a photo viewer that reads images from an SD card.
Initially, I uploaded a simple SD card reading code, and it worked fine. However, after that, the board started showing errors, and now it won’t start at all.
If I try uploading another code, it throws GPIO errors.
If I fix those, it says the T-Display S3 Pro setup is not selected, even though I selected it in the configuration.
I’m stuck and don’t know how to proceed. Any help would be appreciated!
Here’s what I’ve tried so far:
Ensured the correct board is selected in the Arduino IDE.
Verified the User_Setup_Select.h file in the TFT_eSPI library to confirm the correct setup is uncommented.
Reinstalled the drivers and libraries.
My Setup:
Board: LilyGo T-Display S3 Pro
IDE: Arduino IDE
CODE:
#include <TFT_eSPI.h>
#include <SD.h>
#define SD_CS 5 // Adjust to your SD card CS pin
TFT_eSPI tft = TFT_eSPI();
void setup() {
Serial.begin(115200);
// Initialize TFT display
tft.begin();
tft.setRotation(1);
tft.fillScreen(TFT_BLACK);
// Initialize SD card
if (!SD.begin(SD_CS)) {
tft.fillScreen(TFT_RED);
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.drawString("SD Init Failed!", 10, 10);
while (true);
}
tft.setTextColor(TFT_WHITE, TFT_BLACK);
tft.drawString("SD Initialized!", 10, 10);
// Test: List files on the SD card
File root = SD.open("/");
tft.drawString("Files on SD:", 10, 30);
int y = 50;
while (true) {
File file = root.openNextFile();
if (!file) break;
tft.drawString(file.name(), 10, y);
y += 20;
file.close();
}
}
void loop() {}
AFTER THIS IT STARTED
The text was updated successfully, but these errors were encountered: