Removing for the time being. HassOs 4.8 broke my Addons.
This commit is contained in:
parent
9c2507f782
commit
3bdce9e1f6
|
@ -1,62 +1,62 @@
|
||||||
|
|
||||||
input_boolean:
|
# input_boolean:
|
||||||
zigbee_permit_join:
|
# zigbee_permit_join:
|
||||||
name: Allow devices to join
|
# name: Allow devices to join
|
||||||
initial: off
|
# initial: off
|
||||||
icon: mdi:cellphone-wireless
|
# icon: mdi:cellphone-wireless
|
||||||
|
|
||||||
timer:
|
# timer:
|
||||||
zigbee_permit_join:
|
# zigbee_permit_join:
|
||||||
name: Time remaining
|
# name: Time remaining
|
||||||
duration: 600 # Updated this to the number of seconds you wish
|
# duration: 600 # Updated this to the number of seconds you wish
|
||||||
|
|
||||||
sensor:
|
# sensor:
|
||||||
- platform: mqtt
|
# - platform: mqtt
|
||||||
name: Bridge state
|
# name: Bridge state
|
||||||
state_topic: "homeassistant/bridge/state"
|
# state_topic: "homeassistant/bridge/state"
|
||||||
icon: mdi:router-wireless
|
# icon: mdi:router-wireless
|
||||||
|
|
||||||
automation:
|
# automation:
|
||||||
- id: enable_zigbee_join
|
# - id: enable_zigbee_join
|
||||||
alias: Enable Zigbee joining
|
# alias: Enable Zigbee joining
|
||||||
trigger:
|
# trigger:
|
||||||
platform: state
|
# platform: state
|
||||||
entity_id: input_boolean.zigbee_permit_join
|
# entity_id: input_boolean.zigbee_permit_join
|
||||||
to: 'on'
|
# to: 'on'
|
||||||
action:
|
# action:
|
||||||
- service: mqtt.publish
|
# - service: mqtt.publish
|
||||||
data:
|
# data:
|
||||||
topic: homeassistant/bridge/config/permit_join
|
# topic: homeassistant/bridge/config/permit_join
|
||||||
payload: 'true'
|
# payload: 'true'
|
||||||
- service: timer.start
|
# - service: timer.start
|
||||||
data:
|
# data:
|
||||||
entity_id: timer.zigbee_permit_join
|
# entity_id: timer.zigbee_permit_join
|
||||||
- id: disable_zigbee_join
|
# - id: disable_zigbee_join
|
||||||
alias: Disable Zigbee joining
|
# alias: Disable Zigbee joining
|
||||||
trigger:
|
# trigger:
|
||||||
- entity_id: input_boolean.zigbee_permit_join
|
# - entity_id: input_boolean.zigbee_permit_join
|
||||||
platform: state
|
# platform: state
|
||||||
to: 'off'
|
# to: 'off'
|
||||||
action:
|
# action:
|
||||||
- data:
|
# - data:
|
||||||
payload: 'false'
|
# payload: 'false'
|
||||||
topic: homeassistant/bridge/config/permit_join
|
# topic: homeassistant/bridge/config/permit_join
|
||||||
service: mqtt.publish
|
# service: mqtt.publish
|
||||||
- data:
|
# - data:
|
||||||
entity_id: timer.zigbee_permit_join
|
# entity_id: timer.zigbee_permit_join
|
||||||
service: timer.cancel
|
# service: timer.cancel
|
||||||
- id: disable_zigbee_join_timer
|
# - id: disable_zigbee_join_timer
|
||||||
alias: Disable Zigbee joining by timer
|
# alias: Disable Zigbee joining by timer
|
||||||
trigger:
|
# trigger:
|
||||||
- platform: event
|
# - platform: event
|
||||||
event_type: timer.finished
|
# event_type: timer.finished
|
||||||
event_data:
|
# event_data:
|
||||||
entity_id: timer.zigbee_permit_join
|
# entity_id: timer.zigbee_permit_join
|
||||||
action:
|
# action:
|
||||||
- service: mqtt.publish
|
# - service: mqtt.publish
|
||||||
data:
|
# data:
|
||||||
topic: homeassistant/bridge/config/permit_join
|
# topic: homeassistant/bridge/config/permit_join
|
||||||
payload: 'false'
|
# payload: 'false'
|
||||||
- service: input_boolean.turn_off
|
# - service: input_boolean.turn_off
|
||||||
data:
|
# data:
|
||||||
entity_id: input_boolean.zigbee_permit_join
|
# entity_id: input_boolean.zigbee_permit_join
|
Loading…
Reference in New Issue