Last active
March 30, 2026 18:24
-
-
Save alexsotoaguilera/7c5a64050e3ad9e2156ea874de1420f7 to your computer and use it in GitHub Desktop.
Home Assistant Blueprint: ZBMINIR2 detached relay mode
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: ZBMINIR2 detached relay mode | |
| description: Configure ZBMINIR2 to toggle light without turn off the switch. | |
| domain: automation | |
| source_url: https://github.com/alexsotoaguilera/homeassistant/tree/main/blueprints/automation/alexsotoaguilera/ZBMINIR2-detached-relay-mode.yaml | |
| author: Alex Soto Aguilera | |
| homeassistant: | |
| min_version: 2022.4.0 | |
| input: | |
| zbminir2_device: | |
| name: ZBMINIR2 device | |
| description: ZBMINIR2 device, ensure to activate "Detach relay mode" | |
| selector: | |
| device: | |
| filter: | |
| manufacturer: SONOFF | |
| model: Zigbee smart switch | |
| multiple: false | |
| controlled_light: | |
| name: Toggle target lights | |
| description: The switch will toggle these lights. | |
| selector: | |
| entity: | |
| filter: | |
| domain: light | |
| multiple: true | |
| triggers: | |
| - domain: mqtt | |
| device_id: !input "zbminir2_device" | |
| type: action | |
| subtype: toggle | |
| trigger: device | |
| variables: | |
| zbminir2_device: !input "zbminir2_device" | |
| zbminir2_switch: "{{ device_entities(zbminir2_device)[0] }}" | |
| actions: | |
| - choose: | |
| - conditions: | |
| - alias: "ZBMINIR2 switch is OFF" | |
| condition: template | |
| value_template: "{{ states(zbminir2_switch) == 'off' }}" | |
| sequence: | |
| - service: switch.turn_on | |
| data: | |
| entity_id: "{{ zbminir2_switch }}" | |
| - conditions: | |
| - alias: "ZBMINIR2 switch is ON" | |
| condition: template | |
| value_template: "{{ states(zbminir2_switch) == 'on' }}" | |
| sequence: | |
| - action: light.toggle | |
| metadata: {} | |
| data: {} | |
| target: | |
| entity_id: !input "controlled_light" | |
| mode: single |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment