Same problem with my SRT321 device handler as it’s battery operated so the commands have to be returned in a response to a wake-up event.
Broken for us around the 19th.
Yes it does, so it looks like they have broken returning Z Wave commands with a response, as that is what I am doing:
// Battery powered devices can be configured to periodically wake up and
// check in. They send this command and stay awake long enough to receive
// commands, or until they get a WakeUpNoMoreInformation command that
// instructs them that there are no more commands to receive and they can
// stop listening.
def zwaveEvent(physicalgraph.zwave.commands.wakeupv2.WakeUpNotification cmd)
{
def map = [name:“thermostatWakeUp”, value: “${device.displayName} woke up”, isStateChange: true]
def event = createEvent(map)
def cmds = updateIfNeeded()
cmds << zwave.wakeUpV2.wakeUpNoMoreInformation().format()
log.debug "Wakeup $cmds"
[event, response(delayBetween(…
1 Like