From f48f7f5f0bb4bd142bdbb0f4bec889d3c57cbc1b Mon Sep 17 00:00:00 2001 From: shripad621git Date: Tue, 17 Jun 2025 23:31:40 +0530 Subject: [PATCH] [v1.4] components/esp_matter: Fixed the default value for color temperature physical min mireds attribute --- components/esp_matter/esp_matter_feature.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/esp_matter/esp_matter_feature.h b/components/esp_matter/esp_matter_feature.h index 4aa397b89..a4f6782bd 100644 --- a/components/esp_matter/esp_matter_feature.h +++ b/components/esp_matter/esp_matter_feature.h @@ -323,7 +323,7 @@ typedef struct config { uint16_t color_temp_physical_max_mireds; uint16_t couple_color_temp_to_level_min_mireds; nullable startup_color_temperature_mireds; - config() : color_temperature_mireds(0x00fa), color_temp_physical_min_mireds(0), + config() : color_temperature_mireds(0x00fa), color_temp_physical_min_mireds(1), color_temp_physical_max_mireds(0xfeff), couple_color_temp_to_level_min_mireds(1), startup_color_temperature_mireds(0x00fa) {} } config_t;