Skip to content

Commit ba4b9c6

Browse files
committed
Merge branch 'fix/color_min_mireds' into 'main'
components/esp_matter: Fixed the default value for color temperature physical min mireds attribute See merge request app-frameworks/esp-matter!1179
2 parents e8945fe + 561d286 commit ba4b9c6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/esp_matter/esp_matter_feature.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ typedef struct config {
323323
uint16_t color_temp_physical_max_mireds;
324324
uint16_t couple_color_temp_to_level_min_mireds;
325325
nullable<uint16_t> startup_color_temperature_mireds;
326-
config() : color_temperature_mireds(0x00fa), color_temp_physical_min_mireds(0),
326+
config() : color_temperature_mireds(0x00fa), color_temp_physical_min_mireds(1),
327327
color_temp_physical_max_mireds(0xfeff), couple_color_temp_to_level_min_mireds(1),
328328
startup_color_temperature_mireds(0x00fa) {}
329329
} config_t;

0 commit comments

Comments
 (0)