25 lines
705 B
Lua
25 lines
705 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 0 * * *", "off")
|
|
thrawn_schedule("0 0 6 * * *", "on")
|
|
end
|
|
|
|
function thrawn_on_update(state)
|
|
end
|
|
|
|
function on(time)
|
|
thrawn_publish(thrawn_create_topic_state("kueche/lights/girlande/on/set", "1"))
|
|
thrawn_publish(thrawn_create_topic_state("wohnzimmer/lights/wohnzimmergirlande/on/set", "1"))
|
|
end
|
|
|
|
function off(time)
|
|
thrawn_publish(thrawn_create_topic_state("kueche/lights/girlande/on/set", "0"))
|
|
thrawn_publish(thrawn_create_topic_state("wohnzimmer/lights/wohnzimmergirlande/on/set", "0"))
|
|
end
|