ma ham: update light automation

This commit is contained in:
makefu 2021-12-04 17:31:26 +01:00
parent 5eba86c1c6
commit 14f05eb886
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
2 changed files with 62 additions and 18 deletions

View File

@ -1,27 +1,53 @@
let
inherit (import ../lib) btn_cycle_light;
turn_off_all = btn: #lights:
{
alias = "Turn of all lights via ${btn} double click";
trigger = {
platform = "state";
entity_id = "sensor.${btn}_click";
to = "double";
};
action = {
service = "light.turn_off";
#entity_id = lights;
entity_id = "all";
};
};
in {
services.home-assistant.config.automation = [
# (btn_cycle_light "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1")
(btn_cycle_light "light.schlafzimmer_komode_osram" "schlafzimmer_btn2" 128)
(btn_cycle_light "light.keller_osram" "keller_btn1" 128)
{
alias = "toggle keller";
trigger = {
platform = "state";
entity_id = "sensor.keller_btn1_click";
to = "single";
};
action = {
service = "light.toggle";
#entity_id = lights;
data = {
entity_id = "light.keller_osram";
brightness = 255;
};
};
}
{
alias = "low brightness keller with doubleclick";
trigger = {
platform = "state";
entity_id = "sensor.keller_btn1_click";
to = "double";
};
action = {
service = "light.toggle";
data = {
entity_id = "light.keller_osram";
brightness = 50;
};
};
}
# (btn_cycle_light "light.wohnzimmerbeleuchtung" "wohnzimmer_btn3")
(turn_off_all "schlafzimmer_btn2" )
{
alias = "Turn of all lights via schlafzimmer_btn2 double click";
trigger = {
platform = "state";
entity_id = "sensor.schlafzimmer_btn2_click";
to = "double";
};
action = {
service = "light.turn_off";
entity_id = "all";
};
}
];
}

View File

@ -6,7 +6,8 @@ let
];
arbeitszimmerbeleuchtung = [
"light.arbeitszimmer_schrank_dimmer"
"light.arbeitszimmer_kerze" # arbeitszimmer_kerze
"light.arbeitszimmer_kerze"
"light.arbeitszimmer_pflanzenlicht"
];
in {
services.home-assistant.config.light = [
@ -20,5 +21,22 @@ in {
name = "Arbeitszimmer Deko";
entities = arbeitszimmer_deko;
}
{ platform = "switch";
name = "Arbeitszimmer Pflanzenlicht";
entity_id = "switch.arbeitszimmer_stecker1";
}
];
services.home-assistant.config.automation = [
{
alias = "Toggle Arbeitszimmerbeleuchtung via Remote";
trigger = {
platform = "state";
entity_id = "sensor.arbeitszimmer_remote1_action";
};
action = {
service = "light.toggle";
data.entity_id = "light.arbeitszimmerbeleuchtung";
};
}
];
}