So I have some code that runs when Config it called
def configure() {
log.debug("configure() called")sendEvent(name: "numberOfButtons", value: 12, displayed: false) def commands = [] commands << setPrefs() commands << zwave.switchMultilevelV1.switchMultilevelGet().format() commands << zwave.manufacturerSpecificV1.manufacturerSpecificGet().format() commands << zwave.versionV1.versionGet().format() log.debug commands delayBetween(commands, 500)
}
Everything logs fine that it is firing and even logs the commands in the hash. Problem is it doesn't seem that delayBetween is every firing off. Is this command not supported in the Config definition?