mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
e9040f885d
* no smooth for efx rework fade effect * join strobe and fade effects new effect "breath" * - make transition efx to smooth mode more smooth - fixes for pacman - rework fade base effect - make it more versatile - fix prios in schema files - new notify blue effect to demonstrate capability of fade effect
40 lines
600 B
JSON
40 lines
600 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"command": {
|
|
"type" : "string",
|
|
"required" : true,
|
|
"enum" : ["color"]
|
|
},
|
|
"tan" : {
|
|
"type" : "integer"
|
|
},
|
|
"priority": {
|
|
"type": "integer",
|
|
"minimum" : 1,
|
|
"maximum" : 253,
|
|
"required": true
|
|
},
|
|
"duration": {
|
|
"type": "integer",
|
|
"required": false
|
|
},
|
|
"origin": {
|
|
"type": "string",
|
|
"minLength" : 4,
|
|
"maxLength" : 20,
|
|
"required": true
|
|
},
|
|
"color": {
|
|
"type": "array",
|
|
"required": true,
|
|
"items" :{
|
|
"type" : "integer"
|
|
},
|
|
"minItems": 3
|
|
}
|
|
},
|
|
"additionalProperties": false
|
|
}
|