2024-07-18 13:09:39 +02:00
# pioarduino (p)eople (i)nitiated (o)ptimized (arduino)
2020-05-25 11:55:29 +03:00
2025-07-23 17:56:02 +02:00
[](https://github.com/pioarduino/platform-espressif32/actions)
2024-07-27 20:54:41 +02:00
[](https://discord.gg/Nutz9crnZr)
2025-07-23 18:57:42 +02:00
[](https://deepwiki.com/pioarduino/platform-espressif32)
2025-10-10 14:16:09 +02:00
[](https://github.com/pioarduino/platform-espressif32/releases/latest)
2025-10-10 14:20:45 +02:00
[](https://github.com/pioarduino/platform-espressif32/releases/latest)
2016-10-22 02:20:57 +03:00
2025-07-03 17:12:25 +02:00
Espressif Systems is a privately held, fabless semiconductor company renowned for delivering cost-effective wireless communication microcontrollers. Their innovative solutions are widely adopted in mobile devices and Internet of Things (IoT) applications around the globe.
2016-10-22 02:20:57 +03:00
2025-07-03 17:12:25 +02:00
## General
2025-01-10 16:00:49 +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 against branch `develop` to solve.
2025-03-24 11:56:21 +01:00
* No support for the Arduino Nora Nano board, issues needs to be solved by the community
2025-07-23 17:37:22 +02:00
## IDE Preparation
2025-08-02 18:56:31 +02:00
Prerequisites:
2026-02-12 00:58:14 +01:00
- Python (3.10, 3.11, 3.12, 3.13, 3.14 not with Windows!) and git is required for pioarduino to function properly.
2025-07-23 17:56:02 +02:00
2025-08-02 18:56:31 +02:00
## Installation
2025-03-09 18:19:26 +01:00
- [Download and install Microsoft Visual Studio Code ](https://code.visualstudio.com/ ). pioarduino IDE is 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
2025-06-14 14:58:35 +02:00
## Usage
2024-12-16 21:25:16 +01:00
1. Setup new VSCode pioarduino project.
2025-11-05 18:33:57 +01:00
1. Check the `platform` setting in platformio.ini file:
2018-01-10 14:13:33 +02:00
2025-06-14 14:53:00 +02:00
## Documentation
[pioarduino Wiki ](https://deepwiki.com/pioarduino/platform-espressif32 )
The Wiki is AI generated and insane detailed and accurate.
2026-01-22 00:13:43 +01:00
# Features
## Filesystem Support
pioarduino provides native support for multiple filesystem options, allowing you to choose the best solution for your project's needs:
- **LittleFS** (default) - Modern wear-leveling filesystem designed specifically for flash memory. Offers excellent reliability and performance for ESP32 projects.
- **SPIFFS** - Simple legacy filesystem. While still functional, LittleFS is recommended for new projects due to better wear-leveling and reliability.
- **FatFS** - Industry-standard FAT filesystem with broad compatibility across platforms and operating systems.
**Quick Start: **
``` ini
[env:myenv]
board_build.filesystem = fatfs
```
**Available Commands: **
``` bash
pio run -t buildfs # Build FatFS image
pio run -t uploadfs # Upload FatFS image
pio run -t download_fatfs # Download and extract FatFS from device
```
See the [arduino-fatfs example ](examples/arduino-fatfs/ ) for a complete working example.
2025-01-25 16:29:45 +01:00
### Stable Arduino
2026-02-12 00:58:14 +01:00
currently espressif Arduino 3.3.7 and IDF v5.5.2+
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
2025-01-25 16:29:45 +01:00
### Development Arduino
2024-12-19 15:52:15 +01:00
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 = ...
...
```
2024-12-22 13:14:30 +01:00
2025-12-19 16:03:25 +01:00
### ESP32-C2, ESP32-C61 and ESP32-solo1 Arduino support (via pioarduino only feature: *Hybrid compile*)
2025-01-25 16:29:45 +01:00
Example configuration:
``` ini
2025-12-19 16:03:25 +01:00
[env:esp32-c2-devkitm-1]
2025-07-23 17:56:02 +02:00
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
2025-01-25 16:29:45 +01:00
framework = arduino
2025-12-19 16:03:25 +01:00
board = esp32-c2-devkitm-1
2025-01-25 16:29:45 +01:00
monitor_speed = 115200
2025-12-19 16:03:25 +01:00
[env:esp32-c61-devkitc1-n8r2]
2025-07-23 17:56:02 +02:00
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
2025-01-25 16:29:45 +01:00
framework = arduino
2025-12-19 16:03:25 +01:00
board = esp32-c61-devkitc1-n8r2
2025-01-25 16:29:45 +01:00
monitor_speed = 115200
2025-12-19 16:03:25 +01:00
[env:esp32solo1]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
framework = arduino
board = esp32-solo1
monitor_speed = 115200
2025-01-25 16:29:45 +01:00
```
2024-12-22 13:14:30 +01:00
Looking for sponsor button? There is none. If you want to donate, please spend a litte to a charity organization.