From fedf45479d31cd3df9c85dc6878ea77bb93e2bfe Mon Sep 17 00:00:00 2001 From: Rohit Jadhav Date: Wed, 11 Dec 2024 14:49:37 +0530 Subject: [PATCH] components/esp-matter: Remove heating feature from Room AC. --- components/esp_matter/esp_matter_endpoint.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/esp_matter/esp_matter_endpoint.cpp b/components/esp_matter/esp_matter_endpoint.cpp index 9a61db36c..8a196bbe3 100644 --- a/components/esp_matter/esp_matter_endpoint.cpp +++ b/components/esp_matter/esp_matter_endpoint.cpp @@ -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;