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
44 changes: 22 additions & 22 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
*********************
For 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 All @@ -100,7 +111,7 @@ Create a new project and select one of the available boards. You can change afte
.. code-block:: bash

[env:esp32dev]
platform = espressif32
platform = espressif32@6.7.0
board = esp32dev
framework = arduino

Expand All @@ -109,7 +120,7 @@ Create a new project and select one of the available boards. You can change afte
.. code-block:: bash

[env:esp32-s2-saola-1]
platform = espressif32
platform = espressif32@6.7.0
board = esp32-s2-saola-1
framework = arduino

Expand All @@ -118,35 +129,24 @@ Create a new project and select one of the available boards. You can change afte
.. code-block:: bash

[env:esp32-c3-devkitm-1]
platform = espressif32
platform = espressif32@6.7.0
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 latest supported Arduino ESP32, you need to change your project *platformio.ini* accordingly.
The following configuration uses the community version ``pioarduino`` and the latest release Arduino core from the ``espressif`` GitHub repository:

.. note:: This is only an example. Make sure to check the latest available version in `pioarduino's repository <https://github.com/pioarduino/platform-espressif32/releases>`_.
.. 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
Jason2866 marked this conversation as resolved.
Show resolved Hide resolved
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