diff options
author | makefu <github@syntax-fehler.de> | 2020-11-19 01:39:10 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2020-11-19 01:39:10 +0100 |
commit | 8748cbe3e182b99bbf81ee7d830111bc3930dc95 (patch) | |
tree | cb40246aa2613cf91c9233a1fa80f6e01d7d9613 /makefu/2configs/ham/automation | |
parent | b26b6c4ccedfc6f92193dd7386e382d0bf88a293 (diff) |
ma ham: add light toggle switches
Diffstat (limited to 'makefu/2configs/ham/automation')
-rw-r--r-- | makefu/2configs/ham/automation/light_buttons.nix | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/makefu/2configs/ham/automation/light_buttons.nix b/makefu/2configs/ham/automation/light_buttons.nix new file mode 100644 index 000000000..7b43027f1 --- /dev/null +++ b/makefu/2configs/ham/automation/light_buttons.nix @@ -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") + ]; +} |