summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
diff options
context:
space:
mode:
Diffstat (limited to 'makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix')
-rw-r--r--makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix43
1 files changed, 0 insertions, 43 deletions
diff --git a/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix b/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
deleted file mode 100644
index 32a373ed..00000000
--- a/makefu/2configs/home/ham/automation/pflanzen_giessen_erinnerung.nix
+++ /dev/null
@@ -1,43 +0,0 @@
-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}}'')
- ];
- }
- ];
-}