summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
blob: 68604659e12a4f07c1a572be3364c551ddfb7e9e (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
let
  notify_felix = message: {
    service = "notify.signal_felix";
    data.message = message;
  };
  notify_home = message: {
    service = "notify.signal_home";
    data.message_template = message;
  };
in
{
  services.home-assistant.config.automation =
  [
    {
      alias = "Pflanzen Giessen Erinnerung Daily";
      trigger = {
        platform = "time";
        at = "12:15:00";
      };
      action = [
        (notify_felix "Es ist Mittagszeit und du kannst ruhig einmal alle Blumen im Zimmer giessen")
      ];
    }
    {
      alias = "Pflanzen Giessen Erinnerung Weekly";
      trigger = {
        platform = "time";
        at = "12:15:00";
      };
      condition = {
        condition = "time";
        weekday = [ "sat" ];
      };
      action = [
        (notify_home
        ''Es ist Wochenende und die Pflanzen würden sich über ein bisschen Wasser freuen.
         Die Wettervorhersage: {{sensor.dark_sky_summary}} mit einer Regenwahrscheinlichkeit von {{states.sensor.dark_sky_precip_probability.state}}%.
          Aktuell sind es {{states.sensor.dark_sky_temperature.state}}°C bei {{states.sensor.dark_sky_humidity.state}}% Luftfeuchte'')
      ];
    }
  ];
}