feat: Initialize ESP-IDF project with Zigbee HA_on_off_switch example
- Added .devcontainer configuration for development environment. - Created .gitignore to exclude unnecessary files. - Configured C/C++ properties for ESP-IDF in VSCode. - Set up launch configurations for debugging. - Defined project settings for ESP-IDF in VSCode. - Created CMakeLists.txt for project build configuration. - Added README.md with project overview and usage instructions. - Established dependencies for Zigbee libraries in dependencies.lock. - Implemented main application logic in esp_zb_switch.c and esp_zb_switch.h. - Developed switch driver functionality in switch_driver.c and switch_driver.h. - Configured partition table in partitions.csv for NVS and application storage. - Set default SDK configuration in sdkconfig.defaults for project settings.
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
dependencies:
|
||||
espressif/esp-zboss-lib:
|
||||
component_hash: 321883d142421f65009972408287441794250057668a11abbdfd8bec77c3309a
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.6.4
|
||||
espressif/esp-zigbee-lib:
|
||||
component_hash: fa0812e6743e2a7d999af9f44ccdcea17ccb1e80f98d6b2956f44687503a88fd
|
||||
dependencies:
|
||||
- name: idf
|
||||
require: private
|
||||
version: '>=5.0'
|
||||
source:
|
||||
registry_url: https://components.espressif.com/
|
||||
type: service
|
||||
version: 1.6.8
|
||||
examples_utils:
|
||||
dependencies: []
|
||||
source:
|
||||
path: /opt/esp/idf/examples/zigbee/zb_common_components/examples_utils
|
||||
type: local
|
||||
version: '*'
|
||||
idf:
|
||||
source:
|
||||
type: idf
|
||||
version: 6.1.0
|
||||
direct_dependencies:
|
||||
- espressif/esp-zboss-lib
|
||||
- espressif/esp-zigbee-lib
|
||||
- examples_utils
|
||||
- idf
|
||||
manifest_hash: 38eb32e2be3bf4f2f2c09e19faf9839c08bb3d3d2a1a18b57f8157ba44d91370
|
||||
target: esp32c6
|
||||
version: 2.0.0
|
||||
Reference in New Issue
Block a user