From 5af48e6668b877ec71296040b57dbacb4d1b2f74 Mon Sep 17 00:00:00 2001 From: Wang Hui Xiao Date: Sat, 29 Apr 2023 13:43:31 +0800 Subject: [PATCH] bugfix: Add clusters for window_covering: groups and scenes --- components/esp_matter/esp_matter_endpoint.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/esp_matter/esp_matter_endpoint.cpp b/components/esp_matter/esp_matter_endpoint.cpp index 2a8d21a6a..747a2d885 100644 --- a/components/esp_matter/esp_matter_endpoint.cpp +++ b/components/esp_matter/esp_matter_endpoint.cpp @@ -637,6 +637,8 @@ endpoint_t *add(endpoint_t *endpoint, config_t *config) descriptor::create(endpoint, CLUSTER_FLAG_SERVER); identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER); + groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER); + scenes::create(endpoint, &(config->scenes), CLUSTER_FLAG_SERVER); window_covering::create(endpoint, &(config->window_covering), CLUSTER_FLAG_SERVER, ESP_MATTER_NONE_FEATURE_ID); return endpoint;