Skip to content

Latest commit

 

History

History

esp32

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

ESP32 switch example

Build environment

  1. 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.

  1. Acquire SmartThings Device SDK workflow reading Getting Started Document.

How to build example

  1. Replace onboarding_config.json and device.json files under main folder with your registered ones on DevWS (see Getting Started Update Device Information)

  2. 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 in sdkconfig file with desired target board before build.
For example, to run the example on esp32s3 board, change CONFIG_IDF_TARGET in sdkconfig 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
  1. 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.