Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions zha/zigbee/cluster_handlers/general.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ class BinaryInputClusterHandler(ClusterHandler):
REPORT_CONFIG = (
AttrReportConfig(
attr=BinaryInput.AttributeDefs.present_value.name,
config=REPORT_CONFIG_DEFAULT,
config=REPORT_CONFIG_IMMEDIATE,
),
)

Expand All @@ -325,7 +325,7 @@ class BinaryOutputClusterHandler(ClusterHandler):
REPORT_CONFIG = (
AttrReportConfig(
attr=BinaryOutput.AttributeDefs.present_value.name,
config=REPORT_CONFIG_DEFAULT,
config=REPORT_CONFIG_IMMEDIATE,
),
)

Expand Down Expand Up @@ -363,7 +363,7 @@ class BinaryValueClusterHandler(ClusterHandler):
REPORT_CONFIG = (
AttrReportConfig(
attr=BinaryValue.AttributeDefs.present_value.name,
config=REPORT_CONFIG_DEFAULT,
config=REPORT_CONFIG_IMMEDIATE,
),
)

Expand Down
6 changes: 3 additions & 3 deletions zha/zigbee/cluster_handlers/hvac.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,15 +91,15 @@ class ThermostatClusterHandler(ClusterHandler):
),
AttrReportConfig(
attr=Thermostat.AttributeDefs.running_mode.name,
config=REPORT_CONFIG_CLIMATE,
config=REPORT_CONFIG_CLIMATE_DISCRETE,
),
AttrReportConfig(
attr=Thermostat.AttributeDefs.running_state.name,
config=REPORT_CONFIG_CLIMATE_DEMAND,
config=REPORT_CONFIG_CLIMATE_DISCRETE,
),
AttrReportConfig(
attr=Thermostat.AttributeDefs.system_mode.name,
config=REPORT_CONFIG_CLIMATE,
config=REPORT_CONFIG_CLIMATE_DISCRETE,
),
AttrReportConfig(
attr=Thermostat.AttributeDefs.occupancy.name,
Expand Down
Loading