mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-25 19:55:48 +01:00
Added config options for start level trigger (#1923)
Signed-off-by: Kai Kreuzer <kai@openhab.org>
This commit is contained in:
parent
1a2c81d9e2
commit
313fb496ce
@ -2,15 +2,37 @@
|
||||
"triggers": [
|
||||
{
|
||||
"uid": "core.SystemStartlevelTrigger",
|
||||
"label": "a system startlevel is reached",
|
||||
"description": "This triggers the rule if a given startlevel is reached by the system.",
|
||||
"label": "a system start level is reached",
|
||||
"description": "This triggers the rule if a given start level is reached by the system.",
|
||||
"configDescriptions": [
|
||||
{
|
||||
"name": "startlevel",
|
||||
"type": "INTEGER",
|
||||
"label": "Start Level",
|
||||
"description": "The system start level.",
|
||||
"required": true
|
||||
"required": true,
|
||||
"options": [
|
||||
{
|
||||
"label": "40 - Rules loaded",
|
||||
"value": 40
|
||||
},
|
||||
{
|
||||
"label": "50 - Rule engine started",
|
||||
"value": 50
|
||||
},
|
||||
{
|
||||
"label": "70 - User interfaces started",
|
||||
"value": 70
|
||||
},
|
||||
{
|
||||
"label": "80 - Things initialized",
|
||||
"value": 80
|
||||
},
|
||||
{
|
||||
"label": "100 - Startup complete",
|
||||
"value": 100
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"outputs": [
|
||||
|
Loading…
Reference in New Issue
Block a user