2020-12-30 10:02:21 +00:00
|
|
|
# uses:
|
|
|
|
# light.wohnzimmer_schrank_osram
|
|
|
|
# light.wohnzimmer_fernseher_led_strip
|
|
|
|
# "all" lights
|
|
|
|
|
|
|
|
let
|
2022-09-23 21:41:30 +00:00
|
|
|
schranklicht = [
|
|
|
|
"light.wohnzimmer_schrank_osram"
|
|
|
|
"light.wohnzimmer_komode_osram"
|
|
|
|
];
|
2022-01-30 22:51:32 +00:00
|
|
|
weihnachtslicht = "light.wohnzimmer_fenster_lichterkette_licht";
|
|
|
|
fernsehlicht = "light.wled";
|
2022-06-06 19:07:52 +00:00
|
|
|
|
|
|
|
all_lights = [
|
|
|
|
schranklicht weihnachtslicht fernsehlicht
|
|
|
|
# extra lights to also turn off
|
|
|
|
# wohnzimmer
|
|
|
|
"light.wohnzimmer_komode_osram"
|
|
|
|
"light.wohnzimmer_stehlampe_osram"
|
|
|
|
# arbeitszimmer
|
|
|
|
"light.wled_4"
|
|
|
|
"light.arbeitszimmer_schrank_dimmer"
|
|
|
|
"light.arbeitszimmer_pflanzenlicht"
|
|
|
|
];
|
|
|
|
|
2022-01-30 22:51:32 +00:00
|
|
|
final_off = "00:37";
|
2020-12-30 10:02:21 +00:00
|
|
|
|
2022-06-06 19:07:52 +00:00
|
|
|
turn_on = entity_id: offset:
|
|
|
|
# negative offset => before sunset
|
2022-09-23 21:41:30 +00:00
|
|
|
{ alias = "Turn on ${toString entity_id} at sunset ${offset}";
|
2020-12-30 10:02:21 +00:00
|
|
|
trigger = [
|
2022-06-06 19:07:52 +00:00
|
|
|
{ platform = "sun"; event = "sunset"; inherit offset; }
|
2020-12-30 10:02:21 +00:00
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on"; inherit entity_id; }
|
|
|
|
];
|
|
|
|
};
|
|
|
|
in
|
|
|
|
{
|
|
|
|
services.home-assistant.config =
|
|
|
|
{
|
|
|
|
automation =
|
|
|
|
[
|
2022-06-06 19:07:52 +00:00
|
|
|
(turn_on schranklicht "-00:30:00")
|
|
|
|
#(turn_on weihnachtslicht "-00:30:00")
|
|
|
|
(turn_on fernsehlicht "-00:00:00")
|
2020-12-30 10:02:21 +00:00
|
|
|
|
|
|
|
{ alias = "Always turn off the urlaub lights at ${final_off}";
|
|
|
|
trigger = [
|
|
|
|
{ platform = "time"; at = final_off; }
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{
|
|
|
|
service = "light.turn_off";
|
2022-01-30 22:51:32 +00:00
|
|
|
entity_id = [ schranklicht weihnachtslicht fernsehlicht ];
|
2020-12-30 10:02:21 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|