https://github.com/wokwi/esp-idf-hello-world
ESP IDF Hello World, precompiled for ESP32 and configured for Wokwi
https://github.com/wokwi/esp-idf-hello-world
Last synced: 4 months ago
JSON representation
ESP IDF Hello World, precompiled for ESP32 and configured for Wokwi
- Host: GitHub
- URL: https://github.com/wokwi/esp-idf-hello-world
- Owner: wokwi
- Created: 2023-04-30T16:31:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-06T08:34:13.000Z (about 2 years ago)
- Last Synced: 2025-01-16T14:51:21.588Z (5 months ago)
- Size: 934 KB
- Stars: 3
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Precompiled ESP32 IDF Hello World
This is a precompiled version of the ESP32 IDF Hello World example. You can run it with Wokwi, either using the [Wokwi for VS Code Extension](https://docs.wokwi.com/vscode/getting-started) or through the command line using [wokwi-cli](https://github.com/wokwi/wokwi-cli).
## Running with VS Code
1. Install the [Wokwi for VS Code Extension](https://marketplace.visualstudio.com/items?itemName=wokwi.wokwi-vscode)
2. Open this folder in VS Code
3. Press "F1" and choose "Wokwi: Start Simulator"## Running with wokwi-cli
1. Install [wokwi-cli](https://github.com/wokwi/wokwi-cli)
2. Run `wokwi-cli `## Recompiling
To recompile this program, install esp-idf and then run:
```
cd $IDF_PATH/examples/get-started/hello_world
idf.py set-target esp32
idf.py build
```Then copy `build/hello_world.bin`, `build/bootloader/bootloader.bin`, `build/partition_table/partition-table.bin` and `build/hello_world.elf` to the `bin` directory inside this repo.