Add washing machine notification

This commit is contained in:
Jakob Lechner 2024-01-13 17:40:56 +00:00
parent 49c320e4e2
commit 8bb919f781

View file

@ -87,6 +87,25 @@ in
min_brightness = 20;
}
];
automation = [
{
alias = "Waschmaschine fertig Benachrichtigung";
trigger = {
platform = "state";
entity_id = "sensor.waschmaschine_aktueller_vorgang";
to = "Knitterschutz/Ende";
};
action = [
{
service = "notify.mobile_app_shift6mq";
data = {
message = "Die Waschmaschine hat das Programm beendet.";
title = "Wäsche fertig";
};
}
];
}
];
};
};