LED Layouts, Delete Effect, Colorpicker for EC (#290)

* upd

* ipadte schemas

* update html

* update

* fix matrix index increment

[skip ci]

* matrix 1 led as minimum

[skip ci]

* disable zoom

[skpi ci]
This commit is contained in:
brindosch
2016-11-18 18:39:27 +01:00
committed by GitHub
parent c2faf07574
commit c05181666c
25 changed files with 632 additions and 102 deletions

View File

@@ -1,42 +1,45 @@
{
"type":"object",
"script" : "fade.py",
"title":"Fade",
"required":true,
"properties":{
"fade-time": {
"type": "number",
"title":"Fade Time",
"default": 5.0,
"minimum" : 0.1,
"propertyOrder" : 1
},
"color-start": {
"type": "array",
"title":"Color Start",
"default": [255,174,11],
"items" : {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"minItems": 3,
"maxItems": 3,
"propertyOrder" : 2
},
"color-end": {
"type": "array",
"title":"Color End",
"default": [100,100,100],
"items" : {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"minItems": 3,
"maxItems": 3,
"propertyOrder" : 3
}
},
"additionalProperties": false
"type":"object",
"script" : "fade.py",
"title":"Fade",
"required":true,
"properties":{
"fade-time": {
"type": "number",
"title":"Fade Time",
"default": 5.0,
"minimum" : 0.1,
"propertyOrder" : 1
},
"color-start": {
"type": "array",
"title":"Color Start",
"format":"colorpicker",
"default": [255,174,11],
"items" : {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"minItems": 3,
"maxItems": 3,
"propertyOrder" : 2
},
"color-end": {
"type": "array",
"title":"Color End",
"format":"colorpicker",
"default": [100,100,100],
"items" : {
"type": "integer",
"minimum": 0,
"maximum": 255
},
"minItems": 3,
"maxItems": 3,
"propertyOrder" : 3
}
},
"additionalProperties": false
}