mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-07-23 17:27:19 +00:00
Add Trigger Selector example in Selectors Documentation (#37571)
Co-authored-by: Franck Nijhof <frenck@frenck.nl>
This commit is contained in:
parent
cec6d7c4c9
commit
48e19f9894
@ -1539,3 +1539,19 @@ The output of this selector is a list of triggers. For example:
|
|||||||
entity_id: "sensor.outside_temperature"
|
entity_id: "sensor.outside_temperature"
|
||||||
below: 20
|
below: 20
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Example - Merging with existing triggers
|
||||||
|
|
||||||
|
If the trigger(s) should exist within a blueprint that already has some default triggers defined, and an additional customizable trigger should be merged, you need to use the `- triggers` syntax in the blueprint.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# Example trigger selector
|
||||||
|
input:
|
||||||
|
my_trigger_input:
|
||||||
|
selector:
|
||||||
|
trigger:
|
||||||
|
triggers:
|
||||||
|
- triggers: !input my_trigger_input
|
||||||
|
- platform: numeric_state
|
||||||
|
[...]
|
||||||
|
```
|
||||||
|
Loading…
x
Reference in New Issue
Block a user