diff --git a/drivers/SmartThings/zigbee-button/src/aqara/init.lua b/drivers/SmartThings/zigbee-button/src/aqara/init.lua index 5fd1076b4a..5991fd4cb5 100644 --- a/drivers/SmartThings/zigbee-button/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-button/src/aqara/init.lua @@ -76,7 +76,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-button/src/frient/init.lua b/drivers/SmartThings/zigbee-button/src/frient/init.lua index fbe07eefac..e7df0e61c6 100644 --- a/drivers/SmartThings/zigbee-button/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-button/src/frient/init.lua @@ -156,7 +156,6 @@ end local function init_handler(self, device) for _,attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end battery_defaults.enable_battery_voltage_table(device, battery_table) end diff --git a/drivers/SmartThings/zigbee-button/src/samjin/init.lua b/drivers/SmartThings/zigbee-button/src/samjin/init.lua index 66ae410169..116e6aaa80 100644 --- a/drivers/SmartThings/zigbee-button/src/samjin/init.lua +++ b/drivers/SmartThings/zigbee-button/src/samjin/init.lua @@ -21,7 +21,6 @@ battery_config.data_type = zcl_clusters.PowerConfiguration.attributes.BatteryVol local function init_handler(self, device) device:add_configured_attribute(battery_config) - device:add_monitored_attribute(battery_config) end local samjin_button = { diff --git a/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/linxura/init.lua b/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/linxura/init.lua index 2be3564a93..0e7cf44e93 100644 --- a/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/linxura/init.lua +++ b/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/linxura/init.lua @@ -67,7 +67,6 @@ end local function device_init(driver, device) for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/zunzunbee/init.lua b/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/zunzunbee/init.lua index d5355c3b10..7bb209a622 100644 --- a/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/zunzunbee/init.lua +++ b/drivers/SmartThings/zigbee-button/src/zigbee-multi-button/zunzunbee/init.lua @@ -38,7 +38,6 @@ local ZUNZUNBEE_BUTTON_FINGERPRINTS = { -- Initialize device attributes local function init_handler(self, device) device:add_configured_attribute(battery_config) - device:add_monitored_attribute(battery_config) end -- Check if a given device matches the supported fingerprints diff --git a/drivers/SmartThings/zigbee-contact/src/aqara/init.lua b/drivers/SmartThings/zigbee-contact/src/aqara/init.lua index a952e0bfef..477a62afd4 100644 --- a/drivers/SmartThings/zigbee-contact/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/aqara/init.lua @@ -53,7 +53,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-contact/src/aurora-contact-sensor/init.lua b/drivers/SmartThings/zigbee-contact/src/aurora-contact-sensor/init.lua index 43002ec0ad..efa6fb8c37 100644 --- a/drivers/SmartThings/zigbee-contact/src/aurora-contact-sensor/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/aurora-contact-sensor/init.lua @@ -47,7 +47,6 @@ local function device_init(driver, device) for _, attribute in ipairs(AURORA_CONTACT_CONFIGURATION) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-contact/src/contact-temperature-sensor/init.lua b/drivers/SmartThings/zigbee-contact/src/contact-temperature-sensor/init.lua index 52319ad34d..33b2e3daa3 100644 --- a/drivers/SmartThings/zigbee-contact/src/contact-temperature-sensor/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/contact-temperature-sensor/init.lua @@ -52,7 +52,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-contact/src/frient/init.lua b/drivers/SmartThings/zigbee-contact/src/frient/init.lua index 6e5ff2af00..21f2c88c77 100644 --- a/drivers/SmartThings/zigbee-contact/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/frient/init.lua @@ -44,7 +44,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-contact/src/init.lua b/drivers/SmartThings/zigbee-contact/src/init.lua index 7efb05179d..67be42e671 100644 --- a/drivers/SmartThings/zigbee-contact/src/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/init.lua @@ -65,7 +65,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-contact/src/sengled/init.lua b/drivers/SmartThings/zigbee-contact/src/sengled/init.lua index afe1f29770..95b6e5e3e8 100644 --- a/drivers/SmartThings/zigbee-contact/src/sengled/init.lua +++ b/drivers/SmartThings/zigbee-contact/src/sengled/init.lua @@ -41,7 +41,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-dimmer-remote/src/zigbee-battery-accessory-dimmer/CentraliteSystems/init.lua b/drivers/SmartThings/zigbee-dimmer-remote/src/zigbee-battery-accessory-dimmer/CentraliteSystems/init.lua index 0734bf57e8..77bc9fc5a6 100644 --- a/drivers/SmartThings/zigbee-dimmer-remote/src/zigbee-battery-accessory-dimmer/CentraliteSystems/init.lua +++ b/drivers/SmartThings/zigbee-dimmer-remote/src/zigbee-battery-accessory-dimmer/CentraliteSystems/init.lua @@ -98,7 +98,6 @@ local voltage_configuration = { local function device_init(driver, device) device:add_configured_attribute(voltage_configuration) - device:add_monitored_attribute(voltage_configuration) device:remove_monitored_attribute(zcl_clusters.PowerConfiguration.ID, zcl_clusters.PowerConfiguration.attributes.BatteryPercentageRemaining.ID) device:remove_configured_attribute(zcl_clusters.PowerConfiguration.ID, zcl_clusters.PowerConfiguration.attributes.BatteryPercentageRemaining.ID) device:set_field(battery_defaults.DEVICE_MIN_VOLTAGE_KEY, 2.3) diff --git a/drivers/SmartThings/zigbee-fan/src/init.lua b/drivers/SmartThings/zigbee-fan/src/init.lua index 1766be9ff1..a34e90ff5e 100644 --- a/drivers/SmartThings/zigbee-fan/src/init.lua +++ b/drivers/SmartThings/zigbee-fan/src/init.lua @@ -22,7 +22,6 @@ local device_init = function(self, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-humidity-sensor/src/aqara/init.lua b/drivers/SmartThings/zigbee-humidity-sensor/src/aqara/init.lua index e712f7711f..5256bf47e2 100644 --- a/drivers/SmartThings/zigbee-humidity-sensor/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-humidity-sensor/src/aqara/init.lua @@ -67,7 +67,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-humidity-sensor/src/frient-sensor/init.lua b/drivers/SmartThings/zigbee-humidity-sensor/src/frient-sensor/init.lua index a56d070daa..7791e6752b 100644 --- a/drivers/SmartThings/zigbee-humidity-sensor/src/frient-sensor/init.lua +++ b/drivers/SmartThings/zigbee-humidity-sensor/src/frient-sensor/init.lua @@ -38,7 +38,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-humidity-sensor/src/init.lua b/drivers/SmartThings/zigbee-humidity-sensor/src/init.lua index 31dc36ce7b..83a14c70dc 100644 --- a/drivers/SmartThings/zigbee-humidity-sensor/src/init.lua +++ b/drivers/SmartThings/zigbee-humidity-sensor/src/init.lua @@ -51,7 +51,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-illuminance-sensor/src/aqara/init.lua b/drivers/SmartThings/zigbee-illuminance-sensor/src/aqara/init.lua index a345d816c8..72fcbc2489 100644 --- a/drivers/SmartThings/zigbee-illuminance-sensor/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-illuminance-sensor/src/aqara/init.lua @@ -69,7 +69,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-lock/src/lock-without-codes/init.lua b/drivers/SmartThings/zigbee-lock/src/lock-without-codes/init.lua index 46f0867857..7272991459 100644 --- a/drivers/SmartThings/zigbee-lock/src/lock-without-codes/init.lua +++ b/drivers/SmartThings/zigbee-lock/src/lock-without-codes/init.lua @@ -38,7 +38,6 @@ local function device_init(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-motion-sensor/src/aqara/init.lua b/drivers/SmartThings/zigbee-motion-sensor/src/aqara/init.lua index e5649dab4d..1746b21953 100644 --- a/drivers/SmartThings/zigbee-motion-sensor/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-motion-sensor/src/aqara/init.lua @@ -96,7 +96,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-motion-sensor/src/frient/init.lua b/drivers/SmartThings/zigbee-motion-sensor/src/frient/init.lua index 43ce315ab2..c067b2fe56 100644 --- a/drivers/SmartThings/zigbee-motion-sensor/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-motion-sensor/src/frient/init.lua @@ -109,24 +109,17 @@ local function device_init(driver, device) battery_defaults.build_linear_voltage_init(BATTERY_MIN_VOLTAGE, BATTERY_MAX_VOLTAGE)(driver, device) local attribute - attribute = CONFIGURATIONS[OCCUPANCY_ENDPOINT] - -- binding is directly triggered for specific endpoint in do_configure - device:add_monitored_attribute(attribute) - if device:supports_capability_by_id(capabilities.temperatureMeasurement.ID) then attribute = CONFIGURATIONS[TEMPERATURE_ENDPOINT] device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end if device:supports_capability_by_id(capabilities.illuminanceMeasurement.ID) then attribute = CONFIGURATIONS[ILLUMINANCE_ENDPOINT] device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end if device:supports_capability_by_id(capabilities.tamperAlert.ID) then attribute = CONFIGURATIONS[TAMPER_ENDPOINT] device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-motion-sensor/src/sengled/init.lua b/drivers/SmartThings/zigbee-motion-sensor/src/sengled/init.lua index 6ae1de27df..0e2575415f 100644 --- a/drivers/SmartThings/zigbee-motion-sensor/src/sengled/init.lua +++ b/drivers/SmartThings/zigbee-motion-sensor/src/sengled/init.lua @@ -41,7 +41,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-power-meter/src/ezex/init.lua b/drivers/SmartThings/zigbee-power-meter/src/ezex/init.lua index 0b85da97c7..b0bf581748 100644 --- a/drivers/SmartThings/zigbee-power-meter/src/ezex/init.lua +++ b/drivers/SmartThings/zigbee-power-meter/src/ezex/init.lua @@ -49,8 +49,6 @@ end local device_init = function(self, device) device:set_field(constants.SIMPLE_METERING_DIVISOR_KEY, 1000000, {persist = true}) device:set_field(constants.ELECTRICAL_MEASUREMENT_DIVISOR_KEY, 10, {persist = true}) - - device:add_monitored_attribute(instantaneous_demand_configuration) device:add_configured_attribute(instantaneous_demand_configuration) end diff --git a/drivers/SmartThings/zigbee-power-meter/src/shinasystems/init.lua b/drivers/SmartThings/zigbee-power-meter/src/shinasystems/init.lua index 4ba1c6467e..3d28f5a0a5 100644 --- a/drivers/SmartThings/zigbee-power-meter/src/shinasystems/init.lua +++ b/drivers/SmartThings/zigbee-power-meter/src/shinasystems/init.lua @@ -111,7 +111,6 @@ local device_init = function(self, device) device:set_field(constants.SIMPLE_METERING_DIVISOR_KEY, 1000, {persist = true}) for _, attribute in ipairs(POWERMETER_CONFIGURATION_V2) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-presence-sensor/src/init.lua b/drivers/SmartThings/zigbee-presence-sensor/src/init.lua index d52722ed16..cc1611f2ec 100644 --- a/drivers/SmartThings/zigbee-presence-sensor/src/init.lua +++ b/drivers/SmartThings/zigbee-presence-sensor/src/init.lua @@ -111,7 +111,6 @@ end local function init_handler(self, device, event, args) device:set_field(battery_defaults.DEVICE_VOLTAGE_TABLE_KEY, battery_table) device:add_configured_attribute(battery_voltage_attr_configuration) - device:add_monitored_attribute(battery_voltage_attr_configuration) device:remove_monitored_attribute(PowerConfiguration.ID, PowerConfiguration.attributes.BatteryPercentageRemaining.ID) device:remove_configured_attribute(PowerConfiguration.ID, PowerConfiguration.attributes.BatteryPercentageRemaining.ID) diff --git a/drivers/SmartThings/zigbee-smoke-detector/src/aqara-gas/init.lua b/drivers/SmartThings/zigbee-smoke-detector/src/aqara-gas/init.lua index 863385accc..297701272d 100644 --- a/drivers/SmartThings/zigbee-smoke-detector/src/aqara-gas/init.lua +++ b/drivers/SmartThings/zigbee-smoke-detector/src/aqara-gas/init.lua @@ -138,7 +138,6 @@ local function device_init(driver, device) if CONFIGURATIONS ~= nil then for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-smoke-detector/src/aqara/init.lua b/drivers/SmartThings/zigbee-smoke-detector/src/aqara/init.lua index c9813a2b10..91aba0a5e9 100644 --- a/drivers/SmartThings/zigbee-smoke-detector/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-smoke-detector/src/aqara/init.lua @@ -112,7 +112,6 @@ local function device_init(driver, device) if CONFIGURATIONS ~= nil then for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-smoke-detector/src/frient/init.lua b/drivers/SmartThings/zigbee-smoke-detector/src/frient/init.lua index 7bc2fe48b2..b882c3012a 100644 --- a/drivers/SmartThings/zigbee-smoke-detector/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-smoke-detector/src/frient/init.lua @@ -81,7 +81,6 @@ local function device_init(driver, device) if CONFIGURATIONS ~= nil then for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-switch/src/frient/init.lua b/drivers/SmartThings/zigbee-switch/src/frient/init.lua index 4982fa038a..c075fa9320 100644 --- a/drivers/SmartThings/zigbee-switch/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-switch/src/frient/init.lua @@ -139,7 +139,6 @@ local function do_configure(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end device:configure() diff --git a/drivers/SmartThings/zigbee-switch/src/init.lua b/drivers/SmartThings/zigbee-switch/src/init.lua index f1e6385f56..4d5295b3d0 100644 --- a/drivers/SmartThings/zigbee-switch/src/init.lua +++ b/drivers/SmartThings/zigbee-switch/src/init.lua @@ -78,7 +78,6 @@ local device_init = function(driver, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-switch/src/zigbee-dimming-light/init.lua b/drivers/SmartThings/zigbee-switch/src/zigbee-dimming-light/init.lua index 153c8325e8..e74f544ad0 100644 --- a/drivers/SmartThings/zigbee-switch/src/zigbee-dimming-light/init.lua +++ b/drivers/SmartThings/zigbee-switch/src/zigbee-dimming-light/init.lua @@ -87,7 +87,6 @@ end local function device_init(driver, device) for _,attribute in ipairs(DIMMING_LIGHT_CONFIGURATION) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-switch/src/zll-dimmer-bulb/ikea-xy-color-bulb/init.lua b/drivers/SmartThings/zigbee-switch/src/zll-dimmer-bulb/ikea-xy-color-bulb/init.lua index cf18d2ff82..ed6a24ba61 100644 --- a/drivers/SmartThings/zigbee-switch/src/zll-dimmer-bulb/ikea-xy-color-bulb/init.lua +++ b/drivers/SmartThings/zigbee-switch/src/zll-dimmer-bulb/ikea-xy-color-bulb/init.lua @@ -48,7 +48,6 @@ local device_init = function(self, device) if configuration ~= nil then for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end end diff --git a/drivers/SmartThings/zigbee-thermostat/src/popp/init.lua b/drivers/SmartThings/zigbee-thermostat/src/popp/init.lua index bcd5a41dad..007fb722b0 100644 --- a/drivers/SmartThings/zigbee-thermostat/src/popp/init.lua +++ b/drivers/SmartThings/zigbee-thermostat/src/popp/init.lua @@ -325,7 +325,6 @@ local function device_init(driver, device) -- Add the manufacturer-specific attributes to generate their configure reporting and bind requests for _, config in pairs(cluster_configurations) do device:add_configured_attribute(config) - device:add_monitored_attribute(config) end -- initial set of heating mode local stored_heat_mode = device:get_field(STORED_HEAT_MODE) or 'eco' diff --git a/drivers/SmartThings/zigbee-valve/src/ezex/init.lua b/drivers/SmartThings/zigbee-valve/src/ezex/init.lua index 53eddb5a1c..47ced66806 100644 --- a/drivers/SmartThings/zigbee-valve/src/ezex/init.lua +++ b/drivers/SmartThings/zigbee-valve/src/ezex/init.lua @@ -56,7 +56,6 @@ end local function device_init(driver, device) for _, attribute in ipairs(configuration) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-water-leak-sensor/src/aqara/init.lua b/drivers/SmartThings/zigbee-water-leak-sensor/src/aqara/init.lua index 7ad385a13a..7319bae636 100644 --- a/drivers/SmartThings/zigbee-water-leak-sensor/src/aqara/init.lua +++ b/drivers/SmartThings/zigbee-water-leak-sensor/src/aqara/init.lua @@ -47,7 +47,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-water-leak-sensor/src/frient/init.lua b/drivers/SmartThings/zigbee-water-leak-sensor/src/frient/init.lua index b85b58eb7b..5e92ef80d6 100644 --- a/drivers/SmartThings/zigbee-water-leak-sensor/src/frient/init.lua +++ b/drivers/SmartThings/zigbee-water-leak-sensor/src/frient/init.lua @@ -26,7 +26,6 @@ local function device_init(driver, device) battery_defaults.build_linear_voltage_init(config.minV, config.maxV)(driver, device) elseif (config.cluster) then device:add_configured_attribute(config) - device:add_monitored_attribute(config) end end end diff --git a/drivers/SmartThings/zigbee-water-leak-sensor/src/init.lua b/drivers/SmartThings/zigbee-water-leak-sensor/src/init.lua index 994d9d40e4..68a218a586 100644 --- a/drivers/SmartThings/zigbee-water-leak-sensor/src/init.lua +++ b/drivers/SmartThings/zigbee-water-leak-sensor/src/init.lua @@ -59,7 +59,6 @@ local function device_init(driver, device) battery_defaults.enable_battery_voltage_table(device, config.battery_voltage_table) elseif (config.cluster) then device:add_configured_attribute(config) - device:add_monitored_attribute(config) end end end diff --git a/drivers/SmartThings/zigbee-water-leak-sensor/src/sengled/init.lua b/drivers/SmartThings/zigbee-water-leak-sensor/src/sengled/init.lua index f34cd8181f..f00263e309 100644 --- a/drivers/SmartThings/zigbee-water-leak-sensor/src/sengled/init.lua +++ b/drivers/SmartThings/zigbee-water-leak-sensor/src/sengled/init.lua @@ -41,7 +41,6 @@ local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end diff --git a/drivers/SmartThings/zigbee-window-treatment/src/aqara/curtain-driver-e1/init.lua b/drivers/SmartThings/zigbee-window-treatment/src/aqara/curtain-driver-e1/init.lua index 3af5364bbe..bbbe24112e 100644 --- a/drivers/SmartThings/zigbee-window-treatment/src/aqara/curtain-driver-e1/init.lua +++ b/drivers/SmartThings/zigbee-window-treatment/src/aqara/curtain-driver-e1/init.lua @@ -76,7 +76,6 @@ local CONFIGURATIONS = { local function device_init(driver, device) for _, attribute in ipairs(CONFIGURATIONS) do device:add_configured_attribute(attribute) - device:add_monitored_attribute(attribute) end end