@@ -262,7 +262,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
262
262
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
263
263
identify::command::create_trigger_effect (identify_cluster);
264
264
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
265
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
266
265
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
267
266
268
267
return ESP_OK;
@@ -304,7 +303,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
304
303
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
305
304
identify::command::create_trigger_effect (identify_cluster);
306
305
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
307
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
308
306
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
309
307
level_control::create (endpoint, &(config->level_control ), CLUSTER_FLAG_SERVER,
310
308
level_control::feature::on_off::get_id () | level_control::feature::lighting::get_id ());
@@ -347,7 +345,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
347
345
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
348
346
identify::command::create_trigger_effect (identify_cluster);
349
347
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
350
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
351
348
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
352
349
level_control::create (endpoint, &(config->level_control ), CLUSTER_FLAG_SERVER,
353
350
level_control::feature::on_off::get_id () | level_control::feature::lighting::get_id ());
@@ -393,9 +390,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
393
390
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
394
391
identify::command::create_trigger_effect (identify_cluster);
395
392
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
396
- cluster_t *scenes_cluster = scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
397
- scenes_management::command::create_copy_scene (scenes_cluster);
398
- scenes_management::command::create_copy_scene_response (scenes_cluster);
399
393
400
394
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
401
395
level_control::create (endpoint, &(config->level_control ), CLUSTER_FLAG_SERVER,
@@ -600,7 +594,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
600
594
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
601
595
identify::command::create_trigger_effect (identify_cluster);
602
596
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
603
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
604
597
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
605
598
606
599
return ESP_OK;
@@ -641,7 +634,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
641
634
cluster_t *identify_cluster = identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
642
635
identify::command::create_trigger_effect (identify_cluster);
643
636
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
644
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
645
637
on_off::create (endpoint, &(config->on_off ), CLUSTER_FLAG_SERVER, on_off::feature::lighting::get_id ());
646
638
level_control::create (endpoint, &(config->level_control ), CLUSTER_FLAG_SERVER,
647
639
level_control::feature::on_off::get_id () | level_control::feature::lighting::get_id ());
@@ -1106,7 +1098,6 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
1106
1098
descriptor::create (endpoint, &(config->descriptor ), CLUSTER_FLAG_SERVER);
1107
1099
identify::create (endpoint, &(config->identify ), CLUSTER_FLAG_SERVER);
1108
1100
groups::create (endpoint, &(config->groups ), CLUSTER_FLAG_SERVER);
1109
- scenes_management::create (endpoint, &(config->scenes_management ), CLUSTER_FLAG_SERVER);
1110
1101
window_covering::create (endpoint, &(config->window_covering ), CLUSTER_FLAG_SERVER, ESP_MATTER_NONE_FEATURE_ID);
1111
1102
1112
1103
return ESP_OK;
0 commit comments