summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/ham/automation/light_buttons.nix
blob: 7b43027f1dded4a58b8de135a3e6d461f2dd8d08 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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")
  ];
}