esp-idf/examples/cxx/experimental/esp_event_async_cxx
2022-11-01 11:23:21 +08:00
..
main Build & config: Remove leftover files from the unsupported "make" build system 2021-11-11 15:32:36 +01:00
CMakeLists.txt tools: Increase the minimal supported CMake version to 3.16 2022-06-01 06:35:02 +00:00
README.md ci: Enable esp32c6 example, test_apps, and unit tests CI build stage 2022-11-01 11:23:21 +08:00
sdkconfig.defaults C++: ESP Event wrapper classes 2020-10-22 09:56:52 +08:00

Supported Targets ESP32 ESP32-C2 ESP32-C3 ESP32-C6 ESP32-S2 ESP32-S3

ESP-Event asynchronous example

(See the README.md file in the upper level 'examples' directory for more information about examples.)

How to use example

Configure the project

idf.py menuconfig
  • Set serial port under Serial Flasher Options.

Build and Flash

Build the project and flash it to the board, then run monitor tool to view serial output:

idf.py -p PORT flash monitor

(To exit the serial monitor, type Ctrl-].)

See the Getting Started Guide for full steps to configure and use ESP-IDF to build projects.

Example Output

The object is created twice, hence the started Eventloop and finished destruction lines appear twice.

NORMAL TESTING...
received event: test/0; data: 47
received event: test/1

TIMEOUT TESTING...
received event: test/0

TIMEOUT for event: test/0
I (10419) ESP Event C++ Async: Finished example