We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Configure properly your toolchain
Download the ESPSDK
mkdir -p ~/esp cd ~/esp git clone --recursive https://github.com/espressif/esp-idf.git
Set up the tools:
cd ~/esp/esp-idf ./install.sh esp32
cd %userprofile%\esp\esp-idf install.bat esp32
Set up the environment variables:
. $HOME/esp/esp-idf/export.sh
%userprofile%\esp\esp-idf\export.bat
idf.py menuconfig
idf.py build Remember set up the environment variables runing get_idf to set up or refresh the esp-idf environment in any terminal session
idf.py build
get_idf
alias get_idf='. $HOME/esp/esp-idf/export.sh'
idf.py flash Remember to set your desired desired bitrate on the MONITOR_BAUD, if not defaults to 74880
idf.py flash
Getting Started