From dabf52f1fc1969a8a41d1f87a312e9996e9815d1 Mon Sep 17 00:00:00 2001 From: Shubham Patil Date: Tue, 14 Oct 2025 12:04:14 +0530 Subject: [PATCH] components/esp_matter: remove duplicate scenes mgmt create from extended color light --- components/esp_matter/data_model/esp_matter_endpoint.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/components/esp_matter/data_model/esp_matter_endpoint.cpp b/components/esp_matter/data_model/esp_matter_endpoint.cpp index e821de00b..86f2356eb 100644 --- a/components/esp_matter/data_model/esp_matter_endpoint.cpp +++ b/components/esp_matter/data_model/esp_matter_endpoint.cpp @@ -339,7 +339,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config) cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER); identify::command::create_trigger_effect(identify_cluster); groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER); - scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER); cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER); on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting)); on_off::command::create_on(on_off_cluster);