Skip to content

Instantly share code, notes, and snippets.

@russellhq
Created December 28, 2020 09:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save russellhq/5720c0d041290da83478f0c737d4db0e to your computer and use it in GitHub Desktop.
Osram Zigbee Bulb Factory Reset
blueprint:
name: Osram Zigbee Bulb Factory Reset
description: Factory resets Orsram Zigbee bulbs for re-pairing with a ZigBee Hub
domain: automation
input:
input_boolean:
name: Input Boolean
description: This Input boolean will trigger the factory reset automation
selector:
entity:
domain: input_boolean
light_switch:
name: Light Switch
description: The light switch to use for factory resetting the Osram bulb
selector:
entity:
domain: switch
trigger:
- entity_id: !input input_boolean
from: 'off'
platform: state
to: 'on'
action:
- service: switch.turn_on
entity_id: !input light_switch
- delay: '2'
- repeat:
count: '5'
sequence:
- service: switch.turn_off
entity_id: !input light_switch
- delay: '5'
- service: switch.turn_on
entity_id: !input light_switch
- delay: '5'
- service: input_boolean.turn_off
entity_id: !input input_boolean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment