24 lines
503 B
Lua
24 lines
503 B
Lua
SERVICE_NAME = "Weihnachtsbeleuchtung"
|
|
SERVICE_VERSION = "1.0.1"
|
|
|
|
function thrawn_on_start()
|
|
thrawn_register_service(SERVICE_NAME)
|
|
|
|
thrawn_log("Starting LUA Service " .. SERVICE_NAME)
|
|
|
|
thrawn_schedule("0 0 1 * * *", "on_deactivate")
|
|
thrawn_schedule("0 0 6 * * *", "on_activtate")
|
|
|
|
end
|
|
|
|
function thrawn_on_update(state)
|
|
end
|
|
|
|
function on_activtate(time)
|
|
thrawn_publish("kueche/lights/girlande/on/set", "1")
|
|
end
|
|
|
|
function on_deactivate(time)
|
|
thrawn_publish("kueche/lights/girlande/on/set", "0")
|
|
end
|