ma ham: update light automation
This commit is contained in:
parent
5eba86c1c6
commit
14f05eb886
@ -1,27 +1,53 @@
|
|||||||
|
|
||||||
let
|
let
|
||||||
inherit (import ../lib) btn_cycle_light;
|
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 {
|
in {
|
||||||
services.home-assistant.config.automation = [
|
services.home-assistant.config.automation = [
|
||||||
# (btn_cycle_light "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1")
|
# (btn_cycle_light "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1")
|
||||||
(btn_cycle_light "light.schlafzimmer_komode_osram" "schlafzimmer_btn2" 128)
|
(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")
|
# (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";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -6,7 +6,8 @@ let
|
|||||||
];
|
];
|
||||||
arbeitszimmerbeleuchtung = [
|
arbeitszimmerbeleuchtung = [
|
||||||
"light.arbeitszimmer_schrank_dimmer"
|
"light.arbeitszimmer_schrank_dimmer"
|
||||||
"light.arbeitszimmer_kerze" # arbeitszimmer_kerze
|
"light.arbeitszimmer_kerze"
|
||||||
|
"light.arbeitszimmer_pflanzenlicht"
|
||||||
];
|
];
|
||||||
in {
|
in {
|
||||||
services.home-assistant.config.light = [
|
services.home-assistant.config.light = [
|
||||||
@ -20,5 +21,22 @@ in {
|
|||||||
name = "Arbeitszimmer Deko";
|
name = "Arbeitszimmer Deko";
|
||||||
entities = 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";
|
||||||
|
};
|
||||||
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user