Hello,
I want to create a blueprint with a condition based on a selector boolean. Something like:
blueprint:
name: Control
description:
domain: automation
input:
boolean_estimation:
selector:
boolean:
trigger:
- platform: time_pattern
minutes: "0"
id: update_buffer
condition: []
action:
- choose:
- conditions:
- condition: trigger
id: update_buffer
- condition: state
entity_id: !input boolean_estimacion
state: "on"
sequence:
- ...
This doesn’t work.
What is the correct syntax to use boolean selectors in conditions? Maybe I have to create a variable and use it within a template or there’s another way?
Thank you!