summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/urlaub.nix
blob: c11c589cfad1ff489972380b0bec89acf026d56e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# uses:
#  light.wohnzimmer_schrank_osram
#  light.wohnzimmer_fernseher_led_strip
#  "all" lights

let
  schranklicht = "light.wohnzimmer_schrank_osram";
  weihnachtslicht = "light.wohnzimmer_fenster_lichterkette_licht";
  fernsehlicht = "light.wled";

  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"
  ];

  final_off = "00:37";

  turn_on = entity_id: offset:
  # negative offset => before sunset
  { alias = "Turn on ${entity_id} at sunset ${offset}";
    trigger = [
      { platform = "sun"; event = "sunset"; inherit offset; }
    ];
    action =
    [
      { service = "light.turn_on"; inherit entity_id; }
    ];
  };
in
{
  services.home-assistant.config =
  {
    automation =
    [
      (turn_on schranklicht "-00:30:00")
      #(turn_on weihnachtslicht "-00:30:00")
      (turn_on fernsehlicht "-00:00:00")

      { alias = "Always turn off the urlaub lights at ${final_off}";
        trigger = [
          { platform = "time"; at = final_off; }
        ];
        action =
        [
          {
            service = "light.turn_off";
            entity_id =  [ schranklicht weihnachtslicht fernsehlicht ];
          }
        ];
      }
    ];
  };
}