Hello,
I have been looking for a way to get my z-wave devices status in an “automated” way (ie through a script for instance) in order to trigger an alarm in case a given device becomes irresponsive for some time. I can of course see this in Habmin, but this is not optimal as I have to proactively go to Habmin to see that there is an issue.
Anyone knows how to do this?
Thanks in advance for helping.
Rgds,
L.
AndyMB
(Andy)
January 29, 2017, 9:16am
2
Hi,
Does not look like this is possible at the moment, see:
Hi,
I started migrating to openHAB2. In OH1, there is a way to check, if a ZWave device is dead:
Switch ZWaveNode1Dead "Dead" {zwave="1:command=INFO,item=DEAD"}
Is there a way to do the same in OH2? I don’t know what to put here.
{channel="zwave:serial_zstick:1553934d8ee:???"}
@chris , maybe you can give me a hint? I didn’t find it here in the forums.
Thanks in advance…
I was looking to try and do the same last night
Andy
rlkoshak
(Rich Koshak)
January 30, 2017, 3:43pm
3
Assuming the devices periodically update you can do something in rules. If not it won’t help.
Edit: Rewritten for OH 4.
Please see https://community.openhab.org/t/design-pattern-what-is-a-design-pattern-and-how-do-i-use-them/40319 for a description of what Design Patterns are and how to use them.
Problem Statement
Many sensors report status to openHAB periodically (e.g. temperature sensor) or unpredictably (e.g. motion sensors) and a subset of these sensors do not have a built in way for openHAB to query whether or not they are alive. The only way for openHAB to detect that these devic…