Version 1.0.0

Initial version.
This commit is contained in:
2024-06-04 18:59:55 +03:00
commit 17d85823c5
47 changed files with 5768 additions and 0 deletions

15
CMakeLists.txt Executable file
View File

@ -0,0 +1,15 @@
cmake_minimum_required(VERSION 3.16)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
if(${IDF_TARGET} STREQUAL esp32)
project(zh_gateway_esp32)
elseif(${IDF_TARGET} STREQUAL esp32c2)
project(zh_gateway_esp32c2)
elseif(${IDF_TARGET} STREQUAL esp32c3)
project(zh_gateway_esp32c3)
elseif(${IDF_TARGET} STREQUAL esp32c6)
project(zh_gateway_esp32c6)
elseif(${IDF_TARGET} STREQUAL esp32s2)
project(zh_gateway_esp32s2)
elseif(${IDF_TARGET} STREQUAL esp32s3)
project(zh_gateway_esp32s3)
endif()