- Setup ESP32 build environment (Linux/Windows/macOS) according to ESP Guide.
NOTE:
This example is tested under ESP-IDF SDK v5.0. Please choose v5.0 when setting up toolchain.
You can also setup other esp32 series like ESP32-S series, ESP32-C series according to above setup guide.
- Acquire SmartThings Device SDK workflow reading Getting Started Document.
-
Replace
onboarding_config.json
anddevice.json
files undermain
folder with your registered ones on DevWS (see Getting Started Update Device Information) -
Build this example.
$ cd st-device-sdk-c/example/esp32 $ idf.py build
NOTE:
The build should be exectued after ESP environment variables set(PATH
,IDF_PATH
etc.). You can refer Start a ESP Project on Windows or Start a ESP Project on Linux and macOS.
NOTE: The example default target board is esp32. To run the example on other esp32 series, change
CONFIG_IDF_TARGET
insdkconfig
file with desired target board before build.
For example, to run the example on esp32s3 board, changeCONFIG_IDF_TARGET
insdkconfig
file like below.... (Skip) ... CONFIG_IDF_TARGET="esp32s3" ... (Skip) ...You may need to run fullclean to remove previous target board build configuration before building different target.
$ idf.py fullclean
-
Flash the image on target board and monitor.
$ idf.py -p PORT flash $ idf.py -p PORT monitor
NOTE:
To check PORT number on your computer, please check Connect Your Device on Windows or Connect your Device on Linux and macOS
Please refer Getting Started Test guide for testing example with ST app.