mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2023-10-10 13:36:59 +02:00
2d88cdc2d3
* initial support for leddevice options * fix schema and editor init * fix led editor labels and schema * add some led schemas * led config: insert current values. not yet perfect, but it works
31 lines
523 B
JSON
31 lines
523 B
JSON
{
|
|
"type":"object",
|
|
"required":true,
|
|
"properties":{
|
|
"output": {
|
|
"type": "string",
|
|
"title":"Target IP"
|
|
},
|
|
"username": {
|
|
"type": "string",
|
|
"title":"Username",
|
|
"default": "newdeveloper"
|
|
},
|
|
"lightIds": {
|
|
"type": "integer",
|
|
"title":"Light ids"
|
|
},
|
|
"transitiontime": {
|
|
"type": "integer",
|
|
"title":"Transistion time (x100ms)",
|
|
"default" : 1
|
|
},
|
|
"switchOffOnBlack": {
|
|
"type": "boolean",
|
|
"title":"Switch off on black",
|
|
"default" : true
|
|
}
|
|
},
|
|
"additionalProperties": true
|
|
}
|