summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
blob: 32a373edc4459432e3650c5e0e8b20ac13045f13 (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
let
  notify_felix = message: {
    service = "notify.signal_felix";
    data.message = message;
  };
  notify_home = message: {
    service = "notify.signal_home";
    data_template.message = 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: {{states.sensor.dark_sky_summary.state}} 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.
         Der UV Index liegt bei {{states.sensor.dark_sky_uv_index.state}}'')
      ];
    }
  ];
}