hyperion.ng/libsrc/leddevice/schemas/schema-philipshue.json
redPanther 82611afa25 webui: some editor style tweaks (#234)
* 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

* tune editor style
2016-09-10 23:30:05 +02:00

34 lines
564 B
JSON

{
"type":"object",
"required":true,
"properties":{
"output": {
"type": "string",
"title":"Target IP"
},
"username": {
"type": "string",
"title":"Username",
"default": "newdeveloper"
},
"lightIds": {
"type": "array",
"title":"Light ids",
"items": {
"type" : "integer"
}
},
"transitiontime": {
"type": "integer",
"title":"Transistion time (x100ms)",
"default" : 1
},
"switchOffOnBlack": {
"type": "boolean",
"title":"Switch off on black",
"default" : true
}
},
"additionalProperties": true
}