- Notifications
You must be signed in to change notification settings - Fork0
SumeriLal/IDF_Projects
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
on your command line run
npx create-esp32-app
You will need to havenode installed.
The esp-idf must be set up. you can follow the instructions in my course (free of charge) on theSetting up Your Environment module or follow theofficial documentation
this template is forvscode which will need to be installed
In VSCODE add thec++ extension
ensure tour ESP32 is plugged in and that a COM PORT is established (You may need a driver for your ESP32 dev board)
- in any directory run
npx create-esp32-app
- you will be prompted for the name of your project.
- you will be prompted for the IDF path. select or navigate to the location of the IDF path
- you will be prompted for the IDF-tools path. select or navigate to the location of the IDF-tools path
- navigate to the directory of the project name you created
cd <project name>
- open the project in vscode
code .
intellisense should just work so long as you have set up the paths correctly. If you have trouble double check your idf and tools paths and correct them in the/.vscode/c_cpp_properties.json file
- in vs code, open a new terminal by pressing ctrl + ` (or pressing F1 and typing
open new terminal
) - type the following command
idf.py -p [your com port] flash monitor