https://github.com/alwint3r/esp32proj
Generate ESP32 project directory from a very simple template
https://github.com/alwint3r/esp32proj
esp32 iot project-scaffolding
Last synced: about 2 months ago
JSON representation
Generate ESP32 project directory from a very simple template
- Host: GitHub
- URL: https://github.com/alwint3r/esp32proj
- Owner: alwint3r
- License: mit
- Created: 2017-06-22T10:35:40.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T07:16:28.000Z (over 8 years ago)
- Last Synced: 2025-04-06T13:37:35.026Z (about 1 year ago)
- Topics: esp32, iot, project-scaffolding
- Language: Shell
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
esp32proj
=========
Initialize ESP32 project from a very simple template.
## Installation
Clone this repository.
```bash
$ git clone https://github.com/alwint3r/esp32proj.git ~/esp32proj
```
Here I cloned the repository to the `esp32proj` directory inside home directory.
Next, set the `ESP32PROJ_PATH` environment variable with the path to esp32proj directory.
```bash
$ export ESP32PROJ_PATH=$HOME/esp32proj
```
Next append the value of `ESP32PROJ_PATH` environment variable to the `PATH` environment variable.
```bash
$ export PATH=$PATH:$ESP32PROJ_PATH
```
It's better to append those two lines to the `.bash_profile` or `.profile` or `.bash_rc` file inside the home directory.
## Usage
```bash
esp32proj_init.sh [PROJECT_NAME]
```
## Example
```bash
esp32proj_init.sh ./blinking
```
This will create `blinking` project folder under the current working directory.