stockholm/krebs/2configs/shack/glados/multi/wasser.nix

56 lines
1.1 KiB
Nix
Raw Normal View History

let
2020-01-07 15:52:31 +00:00
glados = import ../lib;
seconds = 20;
in
{
switch = [
2020-01-07 15:52:31 +00:00
(glados.tasmota.plug "Wasser" "plug")
];
2020-01-07 15:52:31 +00:00
automation =
[
2019-09-19 19:31:21 +00:00
{ alias = "Water the plant for ${toString seconds} seconds";
trigger = [
{ # trigger at 20:00 no matter what
# TODO: retry or run only if switch.wasser is available
platform = "time";
at = "20:00:00";
}
];
action =
[
{
service = "homeassistant.turn_on";
entity_id = [
"switch.wasser"
];
}
2019-09-19 19:31:21 +00:00
{ delay.seconds = seconds; }
{
service = "homeassistant.turn_off";
entity_id = [
"switch.wasser"
];
}
];
}
2019-09-19 19:31:21 +00:00
{ alias = "Always turn off water after ${toString (seconds * 2)}seconds";
trigger = [
{
platform = "state";
entity_id = "switch.wasser";
to = "on";
2019-09-19 19:31:21 +00:00
for.seconds = seconds*2;
}
];
action =
[
{
service = "homeassistant.turn_off";
entity_id = [ "switch.wasser" ];
}
];
}
];
}