Files
OpenHAB-FFR/rules/SystemStart.rules
2020-11-28 13:07:21 +01:00

11 lines
262 B
Plaintext

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