Arduino IDE1.819 ESP32
时间: 2023-10-09 18:12:38 浏览: 148
The Arduino IDE version 1.8.19 is compatible with the ESP32 microcontroller. The ESP32 is a powerful microcontroller with built-in Wi-Fi and Bluetooth capabilities, making it an ideal choice for projects that require internet connectivity. To program the ESP32 using the Arduino IDE, you need to install the ESP32 board package. Here are the steps to install the ESP32 board package in Arduino IDE:
1. Open the Arduino IDE.
2. Click on File > Preferences.
3. In the Additional Boards Manager URLs field, enter the following URL: https://dl.espressif.com/dl/package_esp32_index.json
4. Click OK.
5. Click on Tools > Board > Boards Manager.
6. Type "ESP32" in the search box.
7. Select the "esp32 by Espressif Systems" board package and click Install.
8. After the installation is complete, select the ESP32 board from the Tools > Board menu.
Now you are ready to program the ESP32 using the Arduino IDE. You can find example codes and libraries for the ESP32 on the internet or the Arduino library manager. Happy coding!
阅读全文