Files
thrawn_services/Weihnachtsbeleuchtung.lua

23 lines
494 B
Lua

SERVICE_NAME = "Weihnachtsbeleuchtung"
SERVICE_VERSION = "1.0.0"
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", "1")
end
function on_deactivate(time)
thrawn_publish("kueche/lights/girlande/on", "0")
end