Alarmgong, Alarmlicht und Hoftor Steuerung

This commit is contained in:
Patrick Niebeling
2020-11-28 13:07:21 +01:00
parent 1193e1a93c
commit f2a79a737b
9 changed files with 171 additions and 18 deletions

11
rules/SystemStart.rules Normal file
View File

@ -0,0 +1,11 @@
var Timer StartupTimer = null
rule "Startup Message"
when
System started
then
logInfo("SystemStart.rules", "Create timer for Systemstartup & Restore")
StartupTimer = createTimer(now.plusSeconds(30), [|
StartupSwitch.postUpdate(ON)
])
end