https://github.com/aswinpajayan/easy-esp32
wrapper function to easily install and configure esp32 development in ubuntu machines
https://github.com/aswinpajayan/easy-esp32
esp32 install-script wrapper-script
Last synced: 4 months ago
JSON representation
wrapper function to easily install and configure esp32 development in ubuntu machines
- Host: GitHub
- URL: https://github.com/aswinpajayan/easy-esp32
- Owner: aswinpajayan
- Created: 2019-05-28T13:17:20.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-12T06:26:03.000Z (almost 5 years ago)
- Last Synced: 2025-01-17T11:13:32.134Z (5 months ago)
- Topics: esp32, install-script, wrapper-script
- Size: 8.79 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# easy-esp32
wrapper function to easily install and configure esp32 development in ubuntu machines## Usage
download wrappers.lib script to your computer preferably home director```
cd
git clone https://github.com/aswinpajayan/easy-esp32
```
source the file manually or add it in your .bashrc fileopen your .bashrc file and add the following line
```
source ~/easy-esp32/wrappers.lib
```### installation
open a new terminal and type
```
esp32 --install
```
adding a new project with hello-world template```
esp32 --new testProject
```
goto the project folder and do
```
make menuconfig
make flash monitor
```
The script just follows the instructions given in https://docs.espressif.com/projects/esp-idf/en/latest/get-started/index.html#installation-step-by-step# Eclipse IDE for ESP development
After installing and testing ESP from commandline, you can use Eclipse IDE for your further development. Detailed instructions for setting up Eclipse IDE is given in [espressif/idf-eclipse-plugin](https://github.com/espressif/idf-eclipse-plugin/blob/master/README.md)