Skip to content

PlatformIOArduinoQuickStart

Rob Dobson edited this page May 10, 2024 · 2 revisions

PlatformIO Arduino Quick Start

Right now RaftCore only compiles on Arduino Core for ESP32 V3.0.0+ which is still a release candidate.

To use this you will need to put the following lines into your platformio.ini file:

platform = https://github.com/platformio/platform-espressif32.git#develop
platform_packages = 
    platformio/framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#3.0.0-rc1
    platformio/framework-arduinoespressif32-libs @ https://github.com/espressif/esp32-arduino-libs.git#idf-release/v5.1
lib_deps =
    https://github.com/robdobsn/RaftCore

To use a specific version of RaftCore, include the Git tag after the library like this:

lib_deps =
    https://github.com/robdobsn/RaftCore#v1.7.8