summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/home/ham/automation/light_buttons.nix
blob: 1892917c41d5239c1c574cd3a561f271ce87573a (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53

let
  inherit (import ../lib) btn_cycle_light;
in {
  services.home-assistant.config.automation = [
    # (btn_cycle_light "light.arbeitszimmerbeleuchtung" "arbeitszimmer_btn1")
    (btn_cycle_light "light.schlafzimmer_komode_osram" "schlafzimmer_btn2" 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")
    {
      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";
      };
    }
  ];
}