2024-07-18 13:09:39 +02:00
# pioarduino (p)eople (i)nitiated (o)ptimized (arduino)
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
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
2024-12-16 21:25:16 +01: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
2024-12-16 21:25:16 +01:00
- [Download and install official Microsoft Visual Studio Code ](https://code.visualstudio.com/ ). pioarduino IDE is built on top of it.
2024-07-18 13:23:30 +02:00
- Open the extension manager.
2024-12-16 21:25:16 +01:00
- Search for the `pioarduino ide` extension.
- Install pioarduino IDE extension.
2024-07-18 13:23:30 +02:00
# Usage
2024-12-16 21:25:16 +01:00
1. Setup new VSCode pioarduino project.
1. Configure a platform option in platformio.ini file:
2018-01-10 14:13:33 +02:00
2024-07-18 13:23:30 +02:00
### Stable version
2024-12-16 21:25:16 +01:00
currently espressif Arduino 3.1.0 and IDF 5.3.2.241210
2023-04-26 11:29:50 +02:00
2018-01-10 14:13:33 +02:00
``` ini
[env:stable]
2024-11-20 19:02:11 +01:00
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/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-12-19 15:52:15 +01:00
### Development version (Arduino core 3.1.0+ and IDF 5.3.2+)
espressif Arduino repo branch master and latest compiled Arduino libs
2018-01-10 14:13:33 +02:00
``` ini
[env:development]
2024-12-16 21:25:16 +01:00
platform = https://github.com/pioarduino/platform-espressif32.git#develop
2018-01-10 14:13:33 +02:00
board = ...
...
```