mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
170ad4f5db
* - disable device when error indecates that the problem is not solvable on reconnect
- introduce a preOpenDelay of 2 seconds (currently value is hardcoded)
* rs232:
- make preOpenDelay available via webui
- fix preOpenDelay
- add basic usb serial detection
* - revert 3819ae7
- fix schema files
* make json checks compat with utf8+bom
* make shutdown effect a bit more flexible
64 lines
1.2 KiB
JSON
64 lines
1.2 KiB
JSON
{
|
|
"type":"object",
|
|
"script" : "shutdown.py",
|
|
"title":"edt_eff_systemshutdown_header_title",
|
|
"required":true,
|
|
"properties":{
|
|
"speed": {
|
|
"type": "number",
|
|
"title":"edt_eff_speed_title",
|
|
"default": 1.0,
|
|
"minimum" : 0.3,
|
|
"step" : 0.1,
|
|
"propertyOrder" : 1
|
|
},
|
|
"alarm-color": {
|
|
"type": "array",
|
|
"title":"edt_eff_alarmcolor_title",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 2
|
|
},
|
|
"post-color": {
|
|
"type": "array",
|
|
"title":"edt_eff_postcolor_title",
|
|
"format" : "colorpicker",
|
|
"default": [255,174,11],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 3
|
|
},
|
|
"initial-blink": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_initial_blink_title",
|
|
"default": true,
|
|
"propertyOrder" : 4
|
|
},
|
|
"set-post-color": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_set_post_color_title",
|
|
"default": true,
|
|
"propertyOrder" : 5
|
|
},
|
|
"shutdown-enabled": {
|
|
"type": "boolean",
|
|
"title":"edt_eff_enableshutdown_title",
|
|
"default": false,
|
|
"propertyOrder" : 6
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|