a8a82f9627
- Introduced DaliCloudBridge for MQTT communication with backend. - Added GatewayProvisioningStore for persisting cloud connection settings using NVS. - Updated CMakeLists.txt to include new source files. - Enhanced README.md with usage examples and configuration details.
20 lines
483 B
CMake
20 lines
483 B
CMake
idf_component_register(
|
|
SRCS
|
|
"src/dali_comm.cpp"
|
|
"src/base.cpp"
|
|
"src/addr.cpp"
|
|
"src/decode.cpp"
|
|
"src/device.cpp"
|
|
"src/dt1.cpp"
|
|
"src/dt8.cpp"
|
|
"src/sequence.cpp"
|
|
"src/sequence_store.cpp"
|
|
"src/color.cpp"
|
|
"src/gateway_cloud.cpp"
|
|
"src/gateway_provisioning.cpp"
|
|
INCLUDE_DIRS "include"
|
|
REQUIRES mqtt cjson nvs_flash
|
|
)
|
|
|
|
set_property(TARGET ${COMPONENT_LIB} PROPERTY CXX_STANDARD 17)
|