un ciaone a tutti, qualche giorno fa ho formattato il computer e ho reinstallato tutto per arduino ide quando carico questo codice `
#include <TFT_eSPI.h> // Include the graphics library
TFT_eSPI tft = TFT_eSPI(); // Create an instance of the display object
void setup() {
tft.init(); // Initialize the display
tft.setRotation(1); // Set display orientation
tft.fillScreen(TFT_BLACK); // Clear the screen and set it to black
tft.setTextColor(TFT_WHITE, TFT_BLACK); // Set text color to white with black background
tft.setTextSize(2); // Set the text size
tft.setCursor(50, 100); // Set the cursor position on the screen
tft.println("Hello World!"); // Print "Hello World" to the screen
}
void loop() {
// Nothing to do here
}
` mi dice questo:
A fatal error occurred: Failed to connect to ESP32: Wrong boot mode detected (0x13)! The chip needs to be in download mode.
For troubleshooting steps visit: https://docs.espressif.com/projects/esptool/en/latest/troubleshooting.html
Caricamento non riuscito: errore durante il caricamento: exit status 2
(solo con esp 32)