Files
platform-espressif32/README.md
T

38 lines
1.5 KiB
Markdown
Raw Normal View History

# Fork of Platformio Espressif 32: development platform for [PlatformIO](https://platformio.org)
[![Build Status](https://github.com/pioarduino/platform-espressif32/workflows/Examples/badge.svg)](https://github.com/pioarduino/platform-espressif32/actions)
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
2022-03-31 14:23:26 +03:00
* [Home](https://registry.platformio.org/platforms/platformio/espressif32) (home page in the PlatformIO Registry)
* [Documentation](https://docs.platformio.org/page/platforms/espressif32.html) (advanced usage, packages, boards, frameworks, etc.)
2016-10-22 02:20:57 +03:00
# Usage
2022-05-27 17:27:53 +03:00
1. [Install PlatformIO](https://platformio.org)
2022-03-31 14:23:26 +03:00
2. Create PlatformIO project and configure a platform option in [platformio.ini](https://docs.platformio.org/page/projectconf.html) file:
2018-01-10 14:13:33 +02:00
## Stable version
espressif Arduino 3.0.2 and IDF 5.1.4
2018-01-10 14:13:33 +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]
platform = https://github.com/pioarduino/platform-espressif32/releases/download/2024.07.00/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
## Development version
```ini
[env:development]
platform = https://github.com/pioarduino/platform-espressif32.git#Arduino/IDF51
2018-01-10 14:13:33 +02:00
board = ...
...
```
# Configuration
Please navigate to [documentation](https://docs.platformio.org/page/platforms/espressif32.html).