Last active
May 31, 2024 09:39
-
-
Save haade-administrator/f551382802c642d24687bfbcd303f0fe to your computer and use it in GitHub Desktop.
création d'un va et vient dans homeassistant avec 3 interrupteurs
This file contains 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: Synchronize 3 Way simulate | |
description: > | |
## Bind Three switches together to act in unison | |
🔥**Version**: v1.0 | |
source_url: https://gist.github.com/haade-administrator/f551382802c642d24687bfbcd303f0fe | |
domain: automation | |
input: | |
switch_1: | |
name: Switch 1 | |
selector: | |
entity: | |
domain: switch | |
switch_2: | |
name: Switch 2 | |
selector: | |
entity: | |
domain: switch | |
switch_3: | |
name: Switch 3 | |
selector: | |
entity: | |
domain: switch | |
variables: | |
switch_1: !input switch_1 | |
switch_2: !input switch_2 | |
switch_3: !input switch_3 | |
trigger: | |
- platform: state | |
entity_id: | |
- !input switch_1 | |
- !input switch_2 | |
- !input switch_3 | |
mode: single | |
condition: | |
'{{ trigger.to_state.state != trigger.from_state.state }}' | |
action: | |
# Set to target value | |
- choose: | |
- conditions: | |
- '{{ trigger.entity_id != switch_1 }}' | |
- '{{ trigger.to_state.state != states(switch_1) }}' | |
sequence: | |
- service: 'switch.turn_{{ trigger.to_state.state }}' | |
entity_id: !input switch_1 | |
- choose: | |
- conditions: | |
- '{{ trigger.entity_id != switch_2 }}' | |
- '{{ trigger.to_state.state != states(switch_2) }}' | |
sequence: | |
- service: 'switch.turn_{{ trigger.to_state.state }}' | |
entity_id: !input switch_2 | |
- choose: | |
- conditions: | |
- '{{ trigger.entity_id != switch_3 }}' | |
- '{{ trigger.to_state.state != states(switch_3) }}' | |
sequence: | |
- service: 'switch.turn_{{ trigger.to_state.state }}' | |
entity_id: !input switch_3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment