Remove invalid attribute reporting for `enhanced_current_hue` in ZHA (#102137)

pull/102179/head
TheJulianJES 2023-10-17 22:23:11 +02:00 committed by GitHub
parent 9dd2f37b11
commit 60c1a8d56f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,6 @@ class ColorClusterHandler(ClusterHandler):
AttrReportConfig(attr="current_x", config=REPORT_CONFIG_DEFAULT),
AttrReportConfig(attr="current_y", config=REPORT_CONFIG_DEFAULT),
AttrReportConfig(attr="current_hue", config=REPORT_CONFIG_DEFAULT),
AttrReportConfig(attr="enhanced_current_hue", config=REPORT_CONFIG_DEFAULT),
AttrReportConfig(attr="current_saturation", config=REPORT_CONFIG_DEFAULT),
AttrReportConfig(attr="color_temperature", config=REPORT_CONFIG_DEFAULT),
)
@ -41,6 +40,7 @@ class ColorClusterHandler(ClusterHandler):
"color_temp_physical_max": True,
"color_capabilities": True,
"color_loop_active": False,
"enhanced_current_hue": False,
"start_up_color_temperature": True,
"options": True,
}