This forum uses cookies
This forum makes use of cookies to store your login information if you are registered, and your last visit if you are not. Cookies are small text documents stored on your computer; the cookies set by this forum can only be used on this website and pose no security risk. Cookies on this forum also track the specific topics you have read and when you last read them. Please confirm that you accept these cookies being set.

Send email alert when group has been on for 5 minutes
#1
I have a sensor on a garage door which monitors whether the door is open (value of 255) or closed (value of 0)

I'd like to script an email alert which gets triggered if the door has been left open for more than 5 minutes.

Many thanks in advance

Kind Regards
James
Reply
#2
Use Event script with "Execution mode" set to "Last instance":
Code:
value = event.getvalue()
if value == 255 then
  os.sleep(5 * 60)
  -- send alert
end
Reply
#3
Where does one set the Execution Mode to Last Instance (I'm on a CBUS SHAC so perhaps don't have this option)?

Would the following work on the SHAC - event script name is "'Garage Door Open Too Long Notification" - script gets killed if the sensor returns to value 0


Code:
if (event.getvalue() == 255) then
  log('The garage door has been opened.')
  os.sleep(5*60)
  log('The garage door has been left open for 5 minutes.')
 
end
 
if (event.getvalue() == 0) then
  log('The garage door is closed.')
  item = script.get('Garage Door Open Too Long Notification')
  script.kill(item.id)
end
Reply
#4
... hmm the script.kill above doesn't seem to work as intended. The first instance of the script keeps running, when the script gets called again on door close.

Any ideas how to modify the above to stop the first instance of the script which is sleeping for 5*60 seconds??
Reply
#5
see this:
https://forum.logicmachine.net/showthrea...4#pid18564
------------------------------
Ctrl+F5
Reply
#6
Thanks Daniel - that approach works.
Reply


Forum Jump: