initial version of h801 led device

This commit is contained in:
Rick van Hattem
2016-09-21 23:03:01 +02:00
parent eeb9b0f7da
commit 1fb2f6be0b
6 changed files with 159 additions and 1 deletions

View File

@@ -0,0 +1,27 @@
{
"type":"object",
"required":true,
"properties":{
"host" : {
"type": "string",
"title":"Target IP",
"default": "255.255.255.255",
"propertyOrder" : 1
},
"port" : {
"type": "integer",
"title":"Port",
"default": 30977,
"propertyOrder" : 2
},
"lightIds": {
"type": "array",
"title":"Light ids",
"items" : {
"type" : "string"
},
"propertyOrder" : 3
}
},
"additionalProperties": true
}