mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
c05181666c
* upd * ipadte schemas * update html * update * fix matrix index increment [skip ci] * matrix 1 led as minimum [skip ci] * disable zoom [skpi ci]
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"type":"object",
|
|
"script" : "police.py",
|
|
"title":"Police",
|
|
"required":true,
|
|
"properties":{
|
|
"color_one": {
|
|
"type": "array",
|
|
"title":"Color one",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 1
|
|
},
|
|
"color_two": {
|
|
"type": "array",
|
|
"title":"Color two",
|
|
"format":"colorpicker",
|
|
"default": [0,0,255],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 2
|
|
},
|
|
"colors_count": {
|
|
"type": "integer",
|
|
"title":"Colors count",
|
|
"default": "10",
|
|
"propertyOrder" : 3
|
|
},
|
|
"rotation-time": {
|
|
"type": "number",
|
|
"title":"Rotation time",
|
|
"default": 2.0,
|
|
"minimum" : 0.1,
|
|
"propertyOrder" : 4
|
|
},
|
|
"reverse": {
|
|
"type": "boolean",
|
|
"title":"Reverse direction",
|
|
"default": false,
|
|
"propertyOrder" : 5
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|