Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Info for pioarduino community version #10045

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
37 changes: 18 additions & 19 deletions docs/en/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,19 @@ PlatformIO can be used in two flavors:

To install PlatformIO, you can follow this Getting Started, provided at `docs.platformio.org`_.

Using the stable code
*********************
To get more information about PlatformIO, see the following links:

- `PlatformIO Core (CLI) <https://docs.platformio.org/en/latest/core/index.html>`_

- `PlatformIO Home <https://docs.platformio.org/en/latest/home/index.html>`_

- `Tutorials and Examples <https://docs.platformio.org/en/latest/tutorials/index.html>`_

- `Library Management <https://docs.platformio.org/en/latest/librarymanager/index.html>`_


Using the stable code 2.0.x
---------------------------

.. note::
A detailed overview of supported development boards, examples and frameworks can be found on `the official Espressif32 dev-platform page <https://registry.platformio.org/platforms/platformio/espressif32>`_ in the PlatformIO Registry.
Expand Down Expand Up @@ -122,31 +133,19 @@ Create a new project and select one of the available boards. You can change afte
board = esp32-c3-devkitm-1
framework = arduino

How to update to the latest code
********************************
How to update to the stable code based on 3.0.x
-----------------------------------------------

To test the latest Arduino ESP32, you need to change your project *platformio.ini* accordingly.
The following configuration uses the upstream version of the Espressif development platform and the latest Arduino core directly from the Espressif GitHub repository:
To use the actual Arduino ESP32, you need to change your project *platformio.ini* accordingly.
The following configuration uses the community version pioarduino and the latest Arduino core from the pioarduino GitHub repository:

.. code-block:: bash

[env:esp32-c3-devkitm-1]
platform = https://github.com/platformio/platform-espressif32.git
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.03/platform-espressif32.zip
board = esp32-c3-devkitm-1
framework = arduino
platform_packages =
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32#master


To get more information about PlatformIO, see the following links:

- `PlatformIO Core (CLI) <https://docs.platformio.org/en/latest/core/index.html>`_

- `PlatformIO Home <https://docs.platformio.org/en/latest/home/index.html>`_

- `Tutorials and Examples <https://docs.platformio.org/en/latest/tutorials/index.html>`_

- `Library Management <https://docs.platformio.org/en/latest/librarymanager/index.html>`_


Windows (manual installation)
Expand Down