https://github.com/aromajoin/esp32-idf-starter
A template project for ESP32 firmware development with VSCode IDE.
https://github.com/aromajoin/esp32-idf-starter
embedded-systems esp32 espressif firmware template-project
Last synced: 3 months ago
JSON representation
A template project for ESP32 firmware development with VSCode IDE.
- Host: GitHub
- URL: https://github.com/aromajoin/esp32-idf-starter
- Owner: aromajoin
- License: other
- Created: 2019-09-18T07:25:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-19T08:25:12.000Z (over 5 years ago)
- Last Synced: 2025-01-15T20:21:19.697Z (5 months ago)
- Topics: embedded-systems, esp32, espressif, firmware, template-project
- Language: C
- Size: 5.86 KB
- Stars: 3
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ESP32 firmware starter
This is template project of ESP32 firmware development by using ESP-IDF.
## Build environment
- Ubuntu 19.04 (tested)
- ESP-IDF latest version (master)## Features
- Pre-config build tasks, recommended VSCode plugins of ESP firmware development
- Config build system with CMake
- Get started with simple task on FreeRTOS which is extendable later## How to use project
- Step 1: Make sure you already [setup prerequisites environment](https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html)
- Step 2: Clone or folk project
- Step 3: Build project
```Shell
$idf.py build
```or `Ctrl+Shift+P` then choose `build` task in VSCode Tasks
- Step 4: Flash project
```Shell
$idf.py -p (PORT) flash
```or `Ctrl+Shift+P` then choose `flash` task in VSCode Tasks
- Step 5: Monitor project
```Shell
$idf.py -p (PORT) monitor
```or `Ctrl+Shift+P` then choose `monitor` task in VSCode Tasks
- Step 6: Modify project fits to your requirements
## ESP-IDF Documentation
For more ESP development details, please read [ESP-IDF documentation](https://docs.espressif.com/projects/esp-idf/en/latest/index.html)