gitextract_o48vfjhm/ ├── .clang-format ├── .clang-tidy ├── .editorconfig ├── .flake8 ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .yamllint ├── README.md ├── components/ │ └── zigbee/ │ ├── __init__.py │ ├── automation.cpp │ ├── automation.h │ ├── const.py │ ├── esp_zb_event.h │ ├── files_to_parse/ │ │ └── parse_zigbee_headers.py │ ├── partitions_zb.csv │ ├── time/ │ │ ├── __init__.py │ │ ├── zigbee_time.cpp │ │ └── zigbee_time.h │ ├── types.py │ ├── zigbee.cpp │ ├── zigbee.h │ ├── zigbee_attribute.cpp │ ├── zigbee_attribute.h │ ├── zigbee_const.py │ ├── zigbee_ep.py │ ├── zigbee_helpers.c │ ├── zigbee_helpers.h │ └── zigbee_pre_build.py.script ├── example_aht10_esp32h2.yaml ├── example_esp32c6.yaml ├── example_esp32h2.yaml ├── example_esp32h2_basic.yaml ├── example_time.yml ├── partitions_zb.csv └── pyproject.toml