2024-07-18 13:09:39 +02:00
# pioarduino (p)eople (i)nitiated (o)ptimized (arduino)
2024-07-17 15:29:13 +02:00
# Fork of Platformio Espressif 32: development platform for [PlatformIO](https://platformio.org)
2020-05-25 11:55:29 +03:00
2024-07-17 15:29:13 +02:00
[](https://github.com/pioarduino/platform-espressif32/actions)
2024-07-27 20:54:41 +02:00
[](https://discord.gg/Nutz9crnZr)
2024-07-19 13:37:40 +02:00
[](https://github.com/pioarduino/platform-espressif32/releases/latest)
2016-10-22 02:20:57 +03:00
2024-07-18 13:23:30 +02:00
> [!NOTE]
> This fork was created due to the lack of ongoing development for the Espressif 32 Arduino Core for PlatformIO.
>
> For additional information, please refer to these GitHub links:
>
> https://github.com/espressif/arduino-esp32/discussions/10039
> https://github.com/platformio/platform-espressif32/issues/1225
> https://github.com/espressif/arduino-esp32/pull/8606
>
> The discussions are self-explanatory, allowing you to draw your own conclusions.
2023-01-23 12:28:43 +02:00
ESP32 is a series of low-cost, low-power system on a chip microcontrollers with integrated Wi-Fi and Bluetooth. ESP32 integrates an antenna switch, RF balun, power amplifier, low-noise receive amplifier, filters, and power management modules.
2016-10-22 02:20:57 +03:00
2022-03-31 14:23:26 +03:00
* [Documentation ](https://docs.platformio.org/page/platforms/espressif32.html ) (advanced usage, packages, boards, frameworks, etc.)
2024-08-29 14:09:14 +02:00
* Issues with boards (wrong / missing). All issues caused from boards will not be fixed from the maintainer(s). A PR needs to be provided to solve.
2016-10-22 02:20:57 +03:00
2024-07-18 13:23:30 +02:00
## IDE Preparation
- [Download and install official Microsoft Visual Studio Code ](https://code.visualstudio.com/ ). PlatformIO IDE is built on top of it.
- Open the extension manager.
- Search for the official `platformio ide` extension.
- Install PlatformIO IDE extension.
2016-10-22 02:20:57 +03:00
2024-07-23 23:26:06 +02:00

2024-07-18 13:23:30 +02:00
# Usage
1. Setup new VSCode PlatformIO project.
1. Configure a platform option in [platformio.ini ](https://docs.platformio.org/page/projectconf.html ) file:
2018-01-10 14:13:33 +02:00
2024-07-18 13:23:30 +02:00
### Stable version
2024-08-21 15:04:37 +02:00
espressif Arduino 3.0.4 and IDF 5.1.4
2018-01-10 14:13:33 +02:00
2023-04-26 11:29:50 +02:00
See `platform` [documentation ](https://docs.platformio.org/en/latest/projectconf/sections/env/options/platform/platform.html#projectconf-env-platform ) for details.
2018-01-10 14:13:33 +02:00
``` ini
[env:stable]
2024-08-21 15:04:37 +02:00
platform = https://github.com/pioarduino/platform-espressif32/releases/download/51.03.04/platform-espressif32.zip
2018-01-10 14:13:33 +02:00
board = ...
...
2016-10-22 02:20:57 +03:00
```
2018-01-10 14:13:33 +02:00
2024-08-20 23:28:25 +02:00
### Bleeding edged development version
based on devel branch Arduino 3.1.0 and IDF 5.3.0
2018-01-10 14:13:33 +02:00
``` ini
[env:development]
2024-08-20 23:28:25 +02:00
platform = https://github.com/pioarduino/platform-espressif32.git#Arduino/IDF53
2018-01-10 14:13:33 +02:00
board = ...
...
```
# Configuration
2024-07-17 15:36:15 +02:00
Please navigate to [documentation ](https://docs.platformio.org/page/platforms/espressif32.html ).