ma ham: fix notifications
This commit is contained in:
parent
167d866212
commit
8913737175
@ -19,8 +19,8 @@ let
|
||||
[
|
||||
{
|
||||
service = "notify.signal_home";
|
||||
data = {
|
||||
message_template = "${name} seit ${toString min} Minuten offen und draussen ist es gerade {{states.sensor.dark_sky_temperature.state}}°C bei {{states.sensor.dark_sky_humidity.state}}% Luftfeuchte";
|
||||
data_template = {
|
||||
message = "${name} seit ${toString min} Minuten offen und draussen ist es gerade {{states.sensor.dark_sky_temperature.state}}°C bei {{states.sensor.dark_sky_humidity.state}}% Luftfeuchte";
|
||||
};
|
||||
}
|
||||
{
|
||||
|
@ -5,22 +5,22 @@ let
|
||||
};
|
||||
notify_home = message: {
|
||||
service = "notify.signal_home";
|
||||
data.message_template = message;
|
||||
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 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 = {
|
||||
@ -34,8 +34,9 @@ in
|
||||
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'')
|
||||
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}}'')
|
||||
];
|
||||
}
|
||||
];
|
||||
|
Loading…
Reference in New Issue
Block a user