From 3d9db6773c1d74fe9daf4007130ee0a557435a7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Rodr=C3=ADguez=20Royo?= Date: Thu, 15 Dec 2022 12:12:41 +0000 Subject: [PATCH] esp_matter_feature: window_covering: set installed_closed_limit_tilt instead of installed_closed_limit_lift in create_installed_closed_limit_tilt --- components/esp_matter/esp_matter_feature.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/esp_matter_feature.cpp b/components/esp_matter/esp_matter_feature.cpp index 0992f9f02..c79d6ad5d 100644 --- a/components/esp_matter/esp_matter_feature.cpp +++ b/components/esp_matter/esp_matter_feature.cpp @@ -480,7 +480,7 @@ esp_err_t add(cluster_t *cluster, config_t *config) attribute::create_physical_closed_limit_tilt(cluster, config->physical_closed_limit_tilt); attribute::create_current_position_tilt(cluster, config->current_position_tilt); attribute::create_installed_open_limit_tilt(cluster, config->installed_open_limit_tilt); - attribute::create_installed_closed_limit_tilt(cluster, config->installed_closed_limit_lift); + attribute::create_installed_closed_limit_tilt(cluster, config->installed_closed_limit_tilt); } else { ESP_LOGI(TAG, "Tilt related attributes were not created because cluster does not support Position_Aware_Tilt feature"); }