ma ham: add light toggle switches

This commit is contained in:
makefu 2020-11-19 01:39:10 +01:00
parent b26b6c4cce
commit 8748cbe3e1
No known key found for this signature in database
GPG Key ID: 36F7711F3FC0F225
3 changed files with 35 additions and 1 deletions

View File

@ -0,0 +1,33 @@
let
toggle = light: btn:
{
alias = "Toggle Light ${light} via ${btn}";
trigger = {
platform = "state";
entity_id = "sensor.${btn}_click";
to = "single";
};
action = {
service = "light.toggle";
entity = light;
};
};
turn_off_all = btn:
{
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 = "light.alle_lichter";
};
};
in {
services.home-assistant.config.automation = [
(toggle "light.wohnzimmer_lichter" "btn3")
(turn_off_all "btn3")
];
}

View File

@ -26,6 +26,7 @@ in {
./calendar/nextcloud.nix
./automation/firetv_restart.nix
./automation/light_buttons.nix
./light/groups.nix
];

View File

@ -13,7 +13,7 @@ let
"light.wohnzimmer_stehlampe_osram_light"
];
schlafzimmer_licht = [
"schlafzimmer_komode_osram_light"
"light.schlafzimmer_komode_osram_light"
];
in {
services.home-assistant.config.light = [