From 1bcb78bd983837a8c1bc05adadbe2d2cf9c13f03 Mon Sep 17 00:00:00 2001 From: makefu Date: Thu, 19 Nov 2020 01:39:10 +0100 Subject: ma ham: add light toggle switches --- 2configs/ham/automation/light_buttons.nix | 33 +++++++++++++++++++++++++++++++ 2configs/ham/default.nix | 1 + 2configs/ham/light/groups.nix | 2 +- 3 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 2configs/ham/automation/light_buttons.nix (limited to '2configs') diff --git a/2configs/ham/automation/light_buttons.nix b/2configs/ham/automation/light_buttons.nix new file mode 100644 index 000000000..7b43027f1 --- /dev/null +++ b/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") + ]; +} diff --git a/2configs/ham/default.nix b/2configs/ham/default.nix index 9e3f7f669..1cd06f6a5 100644 --- a/2configs/ham/default.nix +++ b/2configs/ham/default.nix @@ -26,6 +26,7 @@ in { ./calendar/nextcloud.nix ./automation/firetv_restart.nix + ./automation/light_buttons.nix ./light/groups.nix ]; diff --git a/2configs/ham/light/groups.nix b/2configs/ham/light/groups.nix index e1812b68a..274fd60a3 100644 --- a/2configs/ham/light/groups.nix +++ b/2configs/ham/light/groups.nix @@ -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 = [ -- cgit v1.2.3