summaryrefslogtreecommitdiffstats
path: root/lass/2configs/hass/zigbee.nix
blob: 789a7fb927f891d962f820804ca7e0ebfea652cb (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{config, pkgs, lib, ...}: let

  unstable-pkgs = import <nixpkgs-unstable> {};

in {
  # symlink the zigbee controller
  services.udev.extraRules = ''
    SUBSYSTEM=="tty", ATTRS{idVendor}=="0451", ATTRS{idProduct}=="16a8", SYMLINK+="cc2531", MODE="0660", GROUP="dialout"
    SUBSYSTEM=="tty", ATTRS{idVendor}=="10c4", ATTRS{idProduct}=="ea60", SYMLINK+="cc2652", MODE="0660", GROUP="dialout"
  '';

  # needed to use unstable package
  systemd.services.zigbee2mqtt.environment.ZIGBEE2MQTT_DATA = "/var/lib/zigbee2mqtt";

  services.zigbee2mqtt = {
    enable = true;
    package = unstable-pkgs.zigbee2mqtt;
    config = {
      homeassistant = true;
      frontend.port = 1337;
      experimental.new_api = true;
      permit_join = false;
      mqtt = {
        discovery = true;
        base_topic = "zigbee";
        server = "mqtt://10.42.0.1";
        user = "gg23";
        password = "gg23-mqtt";
      };
      serial = {
        port = "/dev/cc2652";
        # disable_led = true;
      };
      advanced = {
        pan_id = 4222;
      };
    };
  };

  services.home-assistant.config = {
    sensor = [
      # Sensor for monitoring the bridge state
      {
        platform = "mqtt";
        name = "Zigbee2mqtt Bridge state";
        state_topic = "/zigbee2mqtt/bridge/state";
        icon = "mdi:router-wireless";
      }
      # Sensor for Showing the Zigbee2mqtt Version
      {
        platform = "mqtt";
        name = "Zigbee2mqtt Version";
        state_topic = "/zigbee2mqtt/bridge/config";
        value_template = "{{ value_json.version }}";
        icon = "mdi:zigbee";
      }
      # Sensor for Showing the Coordinator Version
      {
        platform = "mqtt";
        name = "Coordinator Version";
        state_topic = "/zigbee2mqtt/bridge/config";
        value_template = "{{ value_json.coordinator }}";
        icon = "mdi:chip";
      }
    ];
    switch = [
      {
        platform = "mqtt";
        name = "zigbee2mqtt_join";
        state_topic = "/zigbee2mqtt/bridge/config/permit_join";
        command_topic = "/zigbee2mqtt/bridge/config/permit_join";
        payload_on = "true";
        payload_off = "false";
      }
    ];
    automation = [
      #{
      #  alias = "Zigbee2mqtt Log Level";
      #  initial_state = "on";
      #  trigger = {
      #    platform = "state";
      #    entity_id = "input_select.zigbee2mqtt_log_level";
      #  };
      #  action = [
      #    {
      #      service =  "mqtt.publish";
      #      data = {
      #        payload_template = "{{ states('input_select.zigbee2mqtt_log_level') }}";
      #        topic =  "/zigbee2mqtt/bridge/config/log_level";
      #      };
      #    }
      #  ];
      #}
      # Automation to start timer when enable join is turned on
      {
        id = "zigbee_join_enabled";
        alias = "";
        trigger = {
          platform = "state";
          entity_id = "switch.zigbee2mqtt_join";
          to = "on";
        };
        action = {
          service = "timer.start";
          entity_id = "timer.zigbee_permit_join";
        };
      }
      # Automation to stop timer when switch turned off and turn off switch when timer finished
      {
        id = "zigbee_join_disabled";
        trigger = [
          {
            platform = "event";
            event_type = "timer.finished";
            event_data.entity_id = "timer.zigbee_permit_join";
          }
          {
            platform = "state";
            entity_id = "switch.zigbee2mqtt_join";
            to = "off";
          }
        ];
        action = [
          { service = "timer.cancel";
            data.entity_id = "timer.zigbee_permit_join";
          }
          { service = "switch.turn_off";
            entity_id = "switch.zigbee2mqtt_join";
          }
        ];
      }
    ];
    #input_select.zigbee2mqtt_log_level = {
    #  name = "Zigbee2mqtt Log Level";
    #  options = [
    #    "debug"
    #    "info"
    #    "warn"
    #    "error"
    #  ];
    #  initial = "info";
    #  icon = "mdi:format-list-bulleted";
    #};

    timer.zigbee_permit_join = {
      name = "Zigbee Time remaining";
      duration = 120;
    };
  };
}