Browse Source

danke ki

master
Thomas 4 years ago
parent
commit
3f612348a6
Signed by: taschenbier
GPG Key ID: 306F574D34A9673B
  1. 12
      automations/automations.yaml

12
automations/automations.yaml

@ -4,30 +4,32 @@ @@ -4,30 +4,32 @@
trigger:
platform: state
entity_id: input_boolean.zigbee_permit_join
to: 'on'
to: "on"
action:
- service: mqtt.publish
data:
topic: zigbee2mqtt/bridge/config/permit_join
payload: 'true'
payload: "true"
- service: timer.start
data:
entity_id: timer.zigbee_permit_join
- id: disable_zigbee_join
alias: Disable Zigbee joining
trigger:
- entity_id: input_boolean.zigbee_permit_join
platform: state
to: 'off'
to: "off"
action:
- data:
payload: 'false'
payload: "false"
topic: zigbee2mqtt/bridge/config/permit_join
service: mqtt.publish
- data:
entity_id: timer.zigbee_permit_join
service: timer.cancel
hide_entity: true
- id: disable_zigbee_join_timer
alias: Disable Zigbee joining by timer
hide_entity: true
@ -40,7 +42,7 @@ @@ -40,7 +42,7 @@
- service: mqtt.publish
data:
topic: zigbee2mqtt/bridge/config/permit_join
payload: 'false'
payload: "false"
- service: input_boolean.turn_off
data:
entity_id: input_boolean.zigbee_permit_join
Loading…
Cancel
Save