Skip to content

Latest commit

 

History

History
51 lines (33 loc) · 1.08 KB

InstallArduinoESP32.md

File metadata and controls

51 lines (33 loc) · 1.08 KB

Install instructions for Arduino ESP32

To use ESP32 boards with the WARDuino project you need to install the correct board manager for ESP32.

Installing the board manager for ESP32

To use the ESP32 boards with arduino-cli perform the following steps:

  1. Init the config file, if you have not done so yet.
arduino-cli config init
  1. To find the location of your config file you can run:
arduino-cli config dump --verbose
  1. Add the ESP32 board manager URL to the config file:
board_manager:
  additional_urls:
      - https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json
  1. Update index
arduino-cli core update-index
  1. Install the ESP32 platform:
arduino-cli core install esp32:esp32

To use ESP32 boards with the WARDuino Project you need at least version 2.0.2 of the board manager. you can check your version with:

arduino-cli core list

Additional information

More information on how to use arduino-cli can be found here.