feat(live-captions): add ESP32 streaming captions app

This commit is contained in:
Adolfo Reyna
2026-08-21 22:41:01 -04:00
parent 03e65fb7f7
commit 52bf3e1870
8 changed files with 648 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
file(GLOB_RECURSE SOURCE_FILES Source/*.c)
set(CJSON_SOURCE "$ENV{IDF_PATH}/components/json/cJSON/cJSON.c")
idf_component_register(
SRCS ${SOURCE_FILES} ${CJSON_SOURCE}
INCLUDE_DIRS Source "$ENV{IDF_PATH}/components/json/cJSON"
REQUIRES TactilitySDK lwip
)