Problema di caricamento con esp 32

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)

Prova a mettere l'esp32 in modalità download (lo attacchi a usb tenendo premuto il tasto boot)

ci ho provato ma non entra in downlaod mode

Fai una foto della scheda ESP32 che stai utilizzano o metti il link a dove l'hai acquistata.

Guglielmo

This topic was automatically closed 180 days after the last reply. New replies are no longer allowed.