mirror of
https://github.com/danieldemus/openhab-core.git
synced 2025-01-28 21:11:54 +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": [
|
"triggers": [
|
||||||
{
|
{
|
||||||
"uid": "core.SystemStartlevelTrigger",
|
"uid": "core.SystemStartlevelTrigger",
|
||||||
"label": "a system startlevel is reached",
|
"label": "a system start level is reached",
|
||||||
"description": "This triggers the rule if a given startlevel is reached by the system.",
|
"description": "This triggers the rule if a given start level is reached by the system.",
|
||||||
"configDescriptions": [
|
"configDescriptions": [
|
||||||
{
|
{
|
||||||
"name": "startlevel",
|
"name": "startlevel",
|
||||||
"type": "INTEGER",
|
"type": "INTEGER",
|
||||||
"label": "Start Level",
|
"label": "Start Level",
|
||||||
"description": "The system 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": [
|
"outputs": [
|
||||||
|
Loading…
Reference in New Issue
Block a user