2020-01-07 15:52:31 +00:00
|
|
|
let
|
2020-01-08 09:16:21 +00:00
|
|
|
glados = import ../lib;
|
2020-01-07 15:52:31 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
automation =
|
2020-01-08 09:16:21 +00:00
|
|
|
[
|
|
|
|
{ alias = "Gute Luft Fablab";
|
|
|
|
trigger = [
|
|
|
|
{
|
|
|
|
platform = "numeric_state";
|
|
|
|
below = 25;
|
2020-01-09 21:42:39 +00:00
|
|
|
entity_id = "sensor.fablab_feinstaub_2_5um";
|
2020-01-08 09:16:21 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on";
|
|
|
|
data = {
|
2020-01-08 17:42:09 +00:00
|
|
|
entity_id = "light.fablab_led";
|
2020-01-08 09:16:21 +00:00
|
|
|
effect = "Twinkle";
|
|
|
|
color_name = "green";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{ alias = "mäßige Luft Fablab";
|
|
|
|
trigger = [
|
|
|
|
#{
|
|
|
|
# platform = "numeric_state";
|
|
|
|
# above = 25;
|
|
|
|
# entity_id = "sensor.fablab_feinstaub_25m";
|
|
|
|
#}
|
|
|
|
{
|
|
|
|
platform = "numeric_state";
|
|
|
|
above = 25;
|
|
|
|
below = 50;
|
2020-01-09 21:42:39 +00:00
|
|
|
entity_id = "sensor.fablab_feinstaub_2_5um";
|
2020-01-08 09:16:21 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on";
|
|
|
|
data = {
|
2020-01-08 17:42:09 +00:00
|
|
|
entity_id = "light.fablab_led";
|
2020-01-08 09:16:21 +00:00
|
|
|
effect = "Twinkle";
|
|
|
|
color_name = "yellow";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{ alias = "schlechte Luft Fablab";
|
|
|
|
trigger = [
|
|
|
|
{
|
|
|
|
platform = "numeric_state";
|
|
|
|
above = 50;
|
2020-01-09 21:42:39 +00:00
|
|
|
entity_id = "sensor.fablab_feinstaub_2_5um";
|
2020-01-08 09:16:21 +00:00
|
|
|
}
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on";
|
|
|
|
data = {
|
2020-01-08 17:42:09 +00:00
|
|
|
entity_id = "light.fablab_led";
|
2020-01-08 09:16:21 +00:00
|
|
|
effect = "Twinkle";
|
|
|
|
color_name = "red";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2020-01-09 21:42:39 +00:00
|
|
|
{ alias = "Luft Sensor nicht verfügbar";
|
|
|
|
trigger = [
|
|
|
|
{
|
|
|
|
platform = "state";
|
|
|
|
to = "unavailable";
|
|
|
|
entity_id = "sensor.fablab_feinstaub_2_5um";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on";
|
|
|
|
data = {
|
|
|
|
entity_id = "light.fablab_led";
|
|
|
|
effect = "Rainbow";
|
|
|
|
color_name = "blue";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
|
|
|
{ alias = "Fablab Licht Reboot";
|
|
|
|
trigger = [
|
|
|
|
{
|
|
|
|
platform = "state";
|
|
|
|
from = "unavailable";
|
|
|
|
entity_id = "light.fablab_led";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
action =
|
|
|
|
[
|
|
|
|
{ service = "light.turn_on";
|
|
|
|
data = {
|
|
|
|
entity_id = "light.fablab_led";
|
|
|
|
effect = "Rainbow";
|
|
|
|
color_name = "orange";
|
|
|
|
};
|
|
|
|
}
|
|
|
|
];
|
|
|
|
}
|
2020-01-07 15:52:31 +00:00
|
|
|
];
|
|
|
|
}
|