Skip to content

Commit cb21664

Browse files
committed
Merge branch 'fix/ac' into 'main'
components/esp-matter: Remove heating feature from Room AC. See merge request app-frameworks/esp-matter!981
2 parents 8987489 + fedf454 commit cb21664

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/esp_matter/esp_matter_endpoint.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -1381,8 +1381,7 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)
13811381

13821382
identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
13831383
on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER, on_off::feature::dead_front_behavior::get_id());
1384-
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER, cluster::thermostat::feature::cooling::get_id()
1385-
| cluster::thermostat::feature::heating::get_id());
1384+
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER, cluster::thermostat::feature::cooling::get_id());
13861385

13871386
return ESP_OK;
13881387

0 commit comments

Comments
 (0)