From db2d0ea99f343ec36f1b0f1fba66f8552434d85c Mon Sep 17 00:00:00 2001 From: Chris Jackson Date: Sat, 3 Aug 2024 18:32:49 +1200 Subject: [PATCH] Add IAS ACE cluster to console (#1433) Signed-off-by: Chris Jackson --- .../zsmartsystems/zigbee/console/main/ZigBeeConsoleMain.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/com.zsmartsystems.zigbee.console.main/src/main/java/com/zsmartsystems/zigbee/console/main/ZigBeeConsoleMain.java b/com.zsmartsystems.zigbee.console.main/src/main/java/com/zsmartsystems/zigbee/console/main/ZigBeeConsoleMain.java index d43a74497..797b0ef62 100644 --- a/com.zsmartsystems.zigbee.console.main/src/main/java/com/zsmartsystems/zigbee/console/main/ZigBeeConsoleMain.java +++ b/com.zsmartsystems.zigbee.console.main/src/main/java/com/zsmartsystems/zigbee/console/main/ZigBeeConsoleMain.java @@ -79,6 +79,7 @@ import com.zsmartsystems.zigbee.zcl.clusters.ZclDiagnosticsCluster; import com.zsmartsystems.zigbee.zcl.clusters.ZclElectricalMeasurementCluster; import com.zsmartsystems.zigbee.zcl.clusters.ZclGroupsCluster; +import com.zsmartsystems.zigbee.zcl.clusters.ZclIasAceCluster; import com.zsmartsystems.zigbee.zcl.clusters.ZclIasZoneCluster; import com.zsmartsystems.zigbee.zcl.clusters.ZclIdentifyCluster; import com.zsmartsystems.zigbee.zcl.clusters.ZclLevelControlCluster; @@ -125,6 +126,7 @@ public static void main(final String[] args) { ZclPollControlCluster.CLUSTER_ID, ZclOnOffCluster.CLUSTER_ID, ZclLevelControlCluster.CLUSTER_ID, ZclColorControlCluster.CLUSTER_ID, ZclPressureMeasurementCluster.CLUSTER_ID, ZclTemperatureMeasurementCluster.CLUSTER_ID, ZclIasZoneCluster.CLUSTER_ID, + ZclIasAceCluster.CLUSTER_ID, ZclThermostatCluster.CLUSTER_ID, ZclWindowCoveringCluster.CLUSTER_ID, ZclMeteringCluster.CLUSTER_ID, ZclElectricalMeasurementCluster.CLUSTER_ID, ZclDiagnosticsCluster.CLUSTER_ID, ZclPowerConfigurationCluster.CLUSTER_ID, @@ -138,7 +140,7 @@ public static void main(final String[] args) { ZclScenesCluster.CLUSTER_ID, ZclPowerConfigurationCluster.CLUSTER_ID, ZclPollControlCluster.CLUSTER_ID, ZclOnOffCluster.CLUSTER_ID, ZclLevelControlCluster.CLUSTER_ID, ZclColorControlCluster.CLUSTER_ID, ZclPressureMeasurementCluster.CLUSTER_ID, - ZclOtaUpgradeCluster.CLUSTER_ID, ZclMeteringCluster.CLUSTER_ID, + ZclOtaUpgradeCluster.CLUSTER_ID, ZclMeteringCluster.CLUSTER_ID, ZclIasAceCluster.CLUSTER_ID, ZclElectricalMeasurementCluster.CLUSTER_ID, ZclDiagnosticsCluster.CLUSTER_ID, ZclBallastConfigurationCluster.CLUSTER_ID, ZclTemperatureMeasurementCluster.CLUSTER_ID, ZclIasZoneCluster.CLUSTER_ID,