File tree 2 files changed +24
-0
lines changed 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ The following selectors are currently available:
52
52
- [ Text selector] ( #text-selector )
53
53
- [ Theme selector] ( #theme-selector )
54
54
- [ Time selector] ( #time-selector )
55
+ - [ Trigger selector] ( #trigger-selector )
55
56
56
57
Interactive demos of each of these selectors can be found on the
57
58
[ Home Assistant Design portal] ( https://design.home-assistant.io/#components/ha-selector ) .
@@ -1292,3 +1293,26 @@ time:
1292
1293
1293
1294
The output of this selector will contain the time in 24-hour format,
1294
1295
for example, `23:59:59`.
1296
+
1297
+ # # Trigger selector
1298
+
1299
+ The triggers selector allows the user to input one or more triggers.
1300
+ On the user interface, the trigger part of the automation editor is shown.
1301
+ The value of the input contains a list of triggers.
1302
+
1303
+ 
1304
+
1305
+ This selector does not have any other options; therefore, it only has its key.
1306
+
1307
+ ` ` ` yaml
1308
+ trigger:
1309
+ ` ` `
1310
+
1311
+ The output of this selector is a list of triggers. For example :
1312
+
1313
+ ` ` ` yaml
1314
+ # Example trigger selector output result
1315
+ - platform: numeric_state
1316
+ entity_id: "sensor.outside_temperature"
1317
+ below: 20
1318
+ ` ` ` ∏
You can’t perform that action at this time.
0 commit comments