https://github.com/tamandutech/esp32.pio.template
Project template for ESP32 or PlatformIO library. PlatformIO + Cpp + CI/CD + Linter + Formatter.
https://github.com/tamandutech/esp32.pio.template
cpp esp32 pio platformio template
Last synced: about 2 months ago
JSON representation
Project template for ESP32 or PlatformIO library. PlatformIO + Cpp + CI/CD + Linter + Formatter.
- Host: GitHub
- URL: https://github.com/tamandutech/esp32.pio.template
- Owner: Tamandutech
- License: mit
- Created: 2025-03-22T06:27:55.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-09-06T22:18:51.000Z (10 months ago)
- Last Synced: 2025-09-06T23:28:59.690Z (10 months ago)
- Topics: cpp, esp32, pio, platformio, template
- Language: C++
- Homepage:
- Size: 108 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# esp32.pio.template
Template with developer experience setup. PlatformIO + Cpp + CI/CD + Linter + Formatter.
> If the codebase using this template is not a library, remove the files: `library.json`, `build_test.cpp`, `.github/workflows/publish.yml`.
## Getting Started
1. Clone the repository
```bash
git clone https://github.com/platformio/esp32.pio.template.git
```
2. Install PlatformIO Core (CLI)
[PlatformIO Core](https://docs.platformio.org/en/latest/core/installation/index.html)
```bash
pip install platformio
```
3. Install PlatformIO IDE (VSCode with PlatformIO Extension)
[PlatformIO IDE](https://docs.platformio.org/en/latest/integration/ide/vscode.html)
4. Install the recommended extensions
Look at the `.vscode/extensions.json` file to see the recommended extensions.
> When you open the project in VSCode, it will automatically show the extensions to install.
5. Run the commands to install the dependencies and build the project
```bash
pio install
pio run -e esp32 --target compiledb
```