This commit is contained in:
parent
ac2fe82a78
commit
f111d123f2
@ -34,6 +34,7 @@ zigbee2mqtt_channel: 11
|
|||||||
zigbee2mqtt_cache_state: True
|
zigbee2mqtt_cache_state: True
|
||||||
# zigbee2mqtt_network_key: [1, 3, 5, 7, 9, 11, 13, 15, 0, 2, 4, 6, 8, 10, 12, 13] # defaults to not set
|
# zigbee2mqtt_network_key: [1, 3, 5, 7, 9, 11, 13, 15, 0, 2, 4, 6, 8, 10, 12, 13] # defaults to not set
|
||||||
zigbee2mqtt_last_seen: "disable"
|
zigbee2mqtt_last_seen: "disable"
|
||||||
|
zigbee2mqtt_elapsed: False
|
||||||
zigbee2mqtt_report_enabled: False
|
zigbee2mqtt_report_enabled: False
|
||||||
|
|
||||||
zigbee2mqtt_homeassistant_discovery_topic: homeassistant
|
zigbee2mqtt_homeassistant_discovery_topic: homeassistant
|
||||||
|
@ -5,27 +5,27 @@ homeassistant: "{{ zigbee2mqtt_homeassistant_enabled }}"
|
|||||||
permit_join: "{{ zigbee2mqtt_permit_join }}"
|
permit_join: "{{ zigbee2mqtt_permit_join }}"
|
||||||
|
|
||||||
mqtt:
|
mqtt:
|
||||||
base_topic: '"{{ zigbee2mqtt_mqtt_base_topic }}"'
|
base_topic: "{{ zigbee2mqtt_mqtt_base_topic }}"
|
||||||
server: '"{{ zigbee2mqtt_mqtt_server }}"'
|
server: "{{ zigbee2mqtt_mqtt_server }}"
|
||||||
{% if zigbee2mqtt_mqtt_user is defined and zigbee2mqtt_mqtt_user and zigbee2mqtt_mqtt_password is defined and zigbee2mqtt_mqtt_password %}
|
{% if zigbee2mqtt_mqtt_user is defined and zigbee2mqtt_mqtt_user and zigbee2mqtt_mqtt_password is defined and zigbee2mqtt_mqtt_password %}
|
||||||
user: '"{{ zigbee2mqtt_mqtt_user }}"'
|
user: "{{ zigbee2mqtt_mqtt_user }}"
|
||||||
password: '"{{ zigbee2mqtt_mqtt_password }}"'
|
password: "{{ zigbee2mqtt_mqtt_password }}"
|
||||||
{% endif %}
|
{% endif %}
|
||||||
client_id: '"{{ zigbee2mqtt_mqtt_client_id }}"'
|
client_id: "{{ zigbee2mqtt_mqtt_client_id }}"
|
||||||
reject_unauthorized: "{{ zigbee2mqtt_mqtt_reject_unauthorized }}"
|
reject_unauthorized: {{ zigbee2mqtt_mqtt_reject_unauthorized }}
|
||||||
include_device_information: "{{ zigbee2mqtt_mqtt_include_device_information }}"
|
include_device_information: {{ zigbee2mqtt_mqtt_include_device_information }}
|
||||||
{% if zigbee2mqtt_serial_port is defined and zigbee2mqtt_serial_port %}
|
{% if zigbee2mqtt_serial_port is defined and zigbee2mqtt_serial_port %}
|
||||||
|
|
||||||
serial:
|
serial:
|
||||||
port: '"{{ zigbee2mqtt_serial_port }}"'
|
port: "{{ zigbee2mqtt_serial_port }}"
|
||||||
disable_led: "{{ zigbee2mqtt_serial_disable_led }}"
|
disable_led: {{ zigbee2mqtt_serial_disable_led }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if zigbee2mqtt_devices_ban %}
|
{% if zigbee2mqtt_devices_ban %}
|
||||||
|
|
||||||
# Ban devices from the network (by ieeeAddr)
|
# Ban devices from the network (by ieeeAddr)
|
||||||
ban:
|
ban:
|
||||||
{% for item in zigbee2mqtt_devices_ban %}
|
{% for item in zigbee2mqtt_devices_ban %}
|
||||||
- '{{ item }}'
|
- "{{ item }}"
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if zigbee2mqtt_devices_whitelist %}
|
{% if zigbee2mqtt_devices_whitelist %}
|
||||||
@ -33,25 +33,25 @@ ban:
|
|||||||
# Whitelist devices from the network (by ieeeAddr)
|
# Whitelist devices from the network (by ieeeAddr)
|
||||||
whitelist:
|
whitelist:
|
||||||
{% for item in zigbee2mqtt_devices_whitelist %}
|
{% for item in zigbee2mqtt_devices_whitelist %}
|
||||||
- '{{ item }}'
|
- "{{ item }}"
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
advanced:
|
advanced:
|
||||||
pan_id: "{{ zigbee2mqtt_pan_id }}"
|
pan_id: {{ zigbee2mqtt_pan_id }}
|
||||||
ext_pan_id: "{{ zigbee2mqtt_ext_pan_id }}"
|
ext_pan_id: {{ zigbee2mqtt_ext_pan_id }}
|
||||||
channel: "{{ zigbee2mqtt_channel }}"
|
channel: {{ zigbee2mqtt_channel }}
|
||||||
cache_state: "{{ zigbee2mqtt_cache_state }}"
|
cache_state: {{ zigbee2mqtt_cache_state }}
|
||||||
log_level: "{{ zigbee2mqtt_log_level }}"
|
log_level: "{{ zigbee2mqtt_log_level }}"
|
||||||
log_directory: "{{ zigbee2mqtt_log_dir }}"
|
log_directory: "{{ zigbee2mqtt_log_dir }}"
|
||||||
{% if zigbee2mqtt_network_key is defined and zigbee2mqtt_network_key %}
|
{% if zigbee2mqtt_network_key is defined and zigbee2mqtt_network_key %}
|
||||||
network_key: "{{ zigbee2mqtt_network_key }}"
|
network_key: {{ zigbee2mqtt_network_key }}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
last_seen: '{{ zigbee2mqtt_last_seen }}'
|
last_seen: "{{ zigbee2mqtt_last_seen }}"
|
||||||
elapsed: false
|
elapsed: "{{ zigbee2mqtt_elapsed }}"
|
||||||
report: "{{ zigbee2mqtt_report_enabled }}"
|
report: "{{ zigbee2mqtt_report_enabled }}"
|
||||||
homeassistant_discovery_topic: '"{{ zigbee2mqtt_homeassistant_discovery_topic }}"'
|
homeassistant_discovery_topic: "{{ zigbee2mqtt_homeassistant_discovery_topic }}"
|
||||||
homeassistant_status_topic: '"{{ zigbee2mqtt_homeassistant_status_topic }}'
|
homeassistant_status_topic: "{{ zigbee2mqtt_homeassistant_status_topic }}"
|
||||||
|
|
||||||
queue:
|
queue:
|
||||||
delay: 250
|
delay: 250
|
||||||
|
Loading…
Reference in New Issue
Block a user