Add notification to stoke up
This commit is contained in:
parent
22bdf86a86
commit
3ceac436b9
1 changed files with 32 additions and 0 deletions
|
|
@ -83,6 +83,38 @@ in
|
||||||
};
|
};
|
||||||
default_config = { };
|
default_config = { };
|
||||||
"automation nix" = [
|
"automation nix" = [
|
||||||
|
{
|
||||||
|
alias = "Nachschüren";
|
||||||
|
description = "Benachrichtigung auf iPad bei Wechsel auf Teillast";
|
||||||
|
mode = "single";
|
||||||
|
trigger = [
|
||||||
|
{
|
||||||
|
platform = "state";
|
||||||
|
entity_id = [ "sensor.guntamaticbiostar_betrieb" ];
|
||||||
|
from = "VOLLLAST";
|
||||||
|
to = "TEILLAST";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
condition = [
|
||||||
|
{
|
||||||
|
condition = "numeric_state";
|
||||||
|
entity_id = "sensor.guntamaticbiostar_pufferladung";
|
||||||
|
below = "80";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
action = [
|
||||||
|
{
|
||||||
|
device_id = "5612874405fa2ee539ad4518a1bb8e34";
|
||||||
|
domain = "mobile_app";
|
||||||
|
type = "notify";
|
||||||
|
message = ''
|
||||||
|
Kessel läuft auf Teillast und Puffer ist unter 80%. Vielleicht willst du
|
||||||
|
nachschüren.
|
||||||
|
'';
|
||||||
|
title = "Nachschüren?";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
];
|
];
|
||||||
"automation ui" = "!include automations.yaml";
|
"automation ui" = "!include automations.yaml";
|
||||||
"scene nix" = [
|
"scene nix" = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue