homebridge-plugin-lares4
Version:
a homebridge plugin to expose Ksenia Lares 4 home automation systems on the Apple ecosystem
48 lines • 1.07 kB
JSON
{
"pluginAlias": "Lares4HomebridgePlugin",
"pluginType": "platform",
"singular": true,
"strictValidation": false,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "Name",
"type": "string",
"default": "Lares4 Homebridge Plugin"
},
"ip": {
"title": "Lares 4 central local IP",
"type": "string",
"format": "ipv4"
},
"sender": {
"title": "Sender",
"type": "string"
},
"pin": {
"title": "PIN",
"type": "string"
},
"https": { "type": "boolean", "title": "HTTPS", "default": true },
"coverTimeout": {
"title": "Maximum covers timeout (seconds)",
"type": "integer",
"minimum": 0
},
"theromstatManualTimeout": {
"title": "Thermostat default timeout (hours)",
"type": "integer",
"minimum": 0
}
},
"required": [
"name",
"ip",
"pin",
"https",
"coverTimeout",
"thermostatManualTimeout"
]
}
}