Arduino ESP32 development environment setup introductory tutorial, esp32 arduino development environment setup tutorial, arduino import eps32 development plug-in

Method one, local installation

1. Install Arduino IDE

Download the Arduino IDE software from the official website and install it. Download link: Software | Arduino
Insert image description here

2. Download the arduino-esp32 library

Network disk link: Link: https://pan.baidu.com/s/1ZuSbo1BPy8XyyXzfl4KNzg?pwd=f8yd
Extraction code: f8yd

3. Install the arduino-esp32 library

1. Find the Arduino IDE installation directory and open the hardware folder.
2. Create an espressif folder in the hardware folder.
3. Move the extracted folder to the espressif folder and rename it to esp32.

Insert image description here
4. Open the esp32 folder, open the tool folder, find get.exe and double-click to run it, and wait for it to finish.

Insert image description here
5. Run the Arduino IDE and you can see the ESP32-S3 board type in the Tools > Development Board > ESP32 Arduino option bar.

Insert image description here

4. Verification environment setup

1. Select the serial port according to your actual serial port. For the rest, you can refer to the diagram.
Insert image description here
2. Select the sample program to obtain the ID.
Insert image description here
3. After compilation, open the serial port monitor. If the device ID can be recognized, it means the environment is successfully established.
Insert image description here

Method 2. Online installation

1. Add the development board management address:

https://github.com/espressif/arduino-esp32/releases/download/1.0.4/package_esp32_index.json

Insert image description here
Insert image description here

2. Add development board

Insert image description here

3. Wait for the installation to complete

Insert image description here

Guess you like

Origin blog.csdn.net/qq_37952052/article/details/127031024