Skip to content

Commit

Permalink
Merge branch 'fix/ac' into 'main'
Browse files Browse the repository at this point in the history
components/esp-matter: Remove heating feature from Room AC.

See merge request app-frameworks/esp-matter!981
  • Loading branch information
dhrishi committed Dec 12, 2024
2 parents 8987489 + fedf454 commit cb21664
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions components/esp_matter/esp_matter_endpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1381,8 +1381,7 @@ esp_err_t add(endpoint_t *endpoint, config_t *config)

identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER);
on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER, on_off::feature::dead_front_behavior::get_id());
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER, cluster::thermostat::feature::cooling::get_id()
| cluster::thermostat::feature::heating::get_id());
cluster::thermostat::create(endpoint, &(config->thermostat), CLUSTER_FLAG_SERVER, cluster::thermostat::feature::cooling::get_id());

return ESP_OK;

Expand Down

0 comments on commit cb21664

Please sign in to comment.