From 1941f56007e641d4d82dc6bba976ba584e3c89ba Mon Sep 17 00:00:00 2001 From: Tom Manley Date: Wed, 23 Nov 2016 23:01:05 -0600 Subject: [PATCH] zll-dimmer-bulb: Fix bug in configure preventing devices from joining The configureHealthCheck method and therefore the configure method was returning a boolean which was causing an exception during the initial join that would prevent the device from showing up to the user. https://smartthings.atlassian.net/browse/PROB-1428 --- .../smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy b/devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy index 9b3c68e..cce0862 100644 --- a/devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy +++ b/devicetypes/smartthings/zll-dimmer-bulb.src/zll-dimmer-bulb.groovy @@ -127,8 +127,8 @@ def configureHealthCheck() { def configure() { log.debug "configure()" - zigbee.onOffConfig() + zigbee.levelConfig() + zigbee.onOffRefresh() + zigbee.levelRefresh() configureHealthCheck() + zigbee.onOffConfig() + zigbee.levelConfig() + zigbee.onOffRefresh() + zigbee.levelRefresh() } def updated() {