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]
32 lines
565 B
JSON
32 lines
565 B
JSON
{
|
|
"type":"object",
|
|
"script" : "strobe.py",
|
|
"title":"Strobe",
|
|
"required":true,
|
|
"properties":{
|
|
"color": {
|
|
"type": "array",
|
|
"title":"Color",
|
|
"format":"colorpicker",
|
|
"default": [255,0,0],
|
|
"items" : {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255
|
|
},
|
|
"minItems": 3,
|
|
"maxItems": 3,
|
|
"propertyOrder" : 1
|
|
},
|
|
"frequency": {
|
|
"type": "number",
|
|
"title":"Frequency",
|
|
"default": 10.0,
|
|
"minimum" : 0.1,
|
|
"append" : "Hz",
|
|
"propertyOrder" : 2
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|